mirror of https://github.com/bitcoin/bitcoin
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
665 B
25 lines
665 B
# 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 debian:bookworm
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
ENV LC_ALL=C.UTF-8
|
|
|
|
COPY ./.python-version /.python-version
|
|
COPY ./ci/lint/container-entrypoint.sh /entrypoint.sh
|
|
COPY ./ci/lint/04_install.sh /install.sh
|
|
COPY ./test/lint/test_runner /test/lint/test_runner
|
|
|
|
RUN /install.sh && \
|
|
echo 'alias lint="./ci/lint/06_script.sh"' >> ~/.bashrc && \
|
|
chmod 755 /entrypoint.sh && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
WORKDIR /bitcoin
|
|
ENTRYPOINT ["/entrypoint.sh"]
|