mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-03-02 09:46:14 +00:00
17 lines
421 B
Plaintext
17 lines
421 B
Plaintext
# Copyright (c) The Bitcoin Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or https://opensource.org/license/mit/.
|
|
|
|
# See test/lint/README.md for usage.
|
|
|
|
FROM mirror.gcr.io/ubuntu:24.04
|
|
|
|
COPY ./ci/retry/retry /ci_retry
|
|
COPY ./.python-version /.python-version
|
|
COPY ./ci/lint/01_install.sh /install.sh
|
|
|
|
RUN /install.sh && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /bitcoin
|