CI: move num_guardians docker ARG down
to improve caching
This commit is contained in:
parent
ee8e4b61ed
commit
da50ceb17e
|
@ -1,9 +1,6 @@
|
|||
# syntax=docker.io/docker/dockerfile:1.3@sha256:42399d4635eddd7a9b8a24be879d2f9a930d0ed040a61324cfdf59ef1357b3b2
|
||||
FROM docker.io/fedora:34@sha256:321dbc444dfeda328a85dc3c31545a65c1fae8390aa5ba6dc1f5222b53b42697 AS const-build
|
||||
|
||||
ARG num_guardians
|
||||
ENV NUM_GUARDIANS=$num_guardians
|
||||
|
||||
# add additional root CAs
|
||||
COPY cert.pem* /certs/
|
||||
RUN if [ -e /certs/cert.pem ]; then cp /certs/cert.pem /etc/pki/tls/certs/ca-bundle.crt; fi
|
||||
|
@ -37,6 +34,9 @@ WORKDIR /
|
|||
COPY scripts ./scripts
|
||||
COPY ethereum/.env.test ./ethereum/.env.test
|
||||
|
||||
ARG num_guardians
|
||||
ENV NUM_GUARDIANS=$num_guardians
|
||||
|
||||
# run guardian-set-init.sh to create env files with the init state for NUM_GUARDIANS
|
||||
RUN ./scripts/guardian-set-init.sh $NUM_GUARDIANS
|
||||
|
||||
|
|
Loading…
Reference in New Issue