mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-04-29 23:09:44 -04:00
doc: Add doc comment to ci/test_imagefile
(Similar to the doc comment in ci/lint_imagefile) Also, rename docker-entrypoint.sh to container-entrypoint.sh Also, add copyright header to touched files.
This commit is contained in:
parent
c6a338b67e
commit
fadc5232f4
3 changed files with 16 additions and 1 deletions
|
@ -1,4 +1,9 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
#
|
||||||
|
# Copyright (c) The Bitcoin Core developers
|
||||||
|
# Distributed under the MIT software license, see the accompanying
|
||||||
|
# file COPYING or https://opensource.org/license/mit/.
|
||||||
|
|
||||||
export LC_ALL=C
|
export LC_ALL=C
|
||||||
|
|
||||||
# Fixes permission issues when there is a container UID/GID mismatch with the owner
|
# Fixes permission issues when there is a container UID/GID mismatch with the owner
|
|
@ -1,3 +1,7 @@
|
||||||
|
# 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.
|
# See test/lint/README.md for usage.
|
||||||
|
|
||||||
FROM debian:bookworm
|
FROM debian:bookworm
|
||||||
|
@ -6,7 +10,7 @@ ENV DEBIAN_FRONTEND=noninteractive
|
||||||
ENV LC_ALL=C.UTF-8
|
ENV LC_ALL=C.UTF-8
|
||||||
|
|
||||||
COPY ./.python-version /.python-version
|
COPY ./.python-version /.python-version
|
||||||
COPY ./ci/lint/docker-entrypoint.sh /entrypoint.sh
|
COPY ./ci/lint/container-entrypoint.sh /entrypoint.sh
|
||||||
COPY ./ci/lint/04_install.sh /install.sh
|
COPY ./ci/lint/04_install.sh /install.sh
|
||||||
|
|
||||||
RUN /install.sh && \
|
RUN /install.sh && \
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
# Copyright (c) The Bitcoin Core developers
|
||||||
|
# Distributed under the MIT software license, see the accompanying
|
||||||
|
# file COPYING or https://opensource.org/license/mit/.
|
||||||
|
|
||||||
|
# See ci/README.md for usage.
|
||||||
|
|
||||||
ARG CI_IMAGE_NAME_TAG
|
ARG CI_IMAGE_NAME_TAG
|
||||||
FROM ${CI_IMAGE_NAME_TAG}
|
FROM ${CI_IMAGE_NAME_TAG}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue