Skip to content

Commit fadc523

Browse files
author
MarcoFalke
committed
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.
1 parent c6a338b commit fadc523

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

ci/lint/docker-entrypoint.sh renamed to ci/lint/container-entrypoint.sh

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
#!/usr/bin/env bash
2+
#
3+
# Copyright (c) The Bitcoin Core developers
4+
# Distributed under the MIT software license, see the accompanying
5+
# file COPYING or https://opensource.org/license/mit/.
6+
27
export LC_ALL=C
38

49
# Fixes permission issues when there is a container UID/GID mismatch with the owner

ci/lint_imagefile

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (c) The Bitcoin Core developers
2+
# Distributed under the MIT software license, see the accompanying
3+
# file COPYING or https://opensource.org/license/mit/.
4+
15
# See test/lint/README.md for usage.
26

37
FROM debian:bookworm
@@ -6,7 +10,7 @@ ENV DEBIAN_FRONTEND=noninteractive
610
ENV LC_ALL=C.UTF-8
711

812
COPY ./.python-version /.python-version
9-
COPY ./ci/lint/docker-entrypoint.sh /entrypoint.sh
13+
COPY ./ci/lint/container-entrypoint.sh /entrypoint.sh
1014
COPY ./ci/lint/04_install.sh /install.sh
1115

1216
RUN /install.sh && \

ci/test_imagefile

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Copyright (c) The Bitcoin Core developers
2+
# Distributed under the MIT software license, see the accompanying
3+
# file COPYING or https://opensource.org/license/mit/.
4+
5+
# See ci/README.md for usage.
6+
17
ARG CI_IMAGE_NAME_TAG
28
FROM ${CI_IMAGE_NAME_TAG}
39

0 commit comments

Comments
 (0)