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.
11 lines
355 B
11 lines
355 B
2 years ago
|
ARG CI_IMAGE_NAME_TAG
|
||
|
FROM ${CI_IMAGE_NAME_TAG}
|
||
|
|
||
|
ARG FILE_ENV
|
||
|
ENV FILE_ENV=${FILE_ENV}
|
||
|
|
||
|
COPY ./ci/retry/retry /usr/bin/retry
|
||
|
COPY ./ci/test/00_setup_env.sh ./${FILE_ENV} ./ci/test/01_base_install.sh /ci_base_install/ci/test/
|
||
|
|
||
|
RUN ["bash", "-c", "cd /ci_base_install/ && set -o errexit && source ./ci/test/00_setup_env.sh && ./ci/test/01_base_install.sh"]
|