We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ENV key=value
1 parent dfde4b7 commit fcc35c9Copy full SHA for fcc35c9
1 file changed
Dockerfile
@@ -14,7 +14,7 @@ RUN apt-get update && apt-get install -y gcc openssl cmake
14
FROM build-base AS build-rust-test-runner
15
16
RUN mkdir -p /rust-test-runner/src
17
-ENV wd /rust-test-runner
+ENV wd=/rust-test-runner
18
WORKDIR ${wd}
19
COPY Cargo.* ./
20
# for caching, we want to download and build all the dependencies before copying
@@ -129,7 +129,7 @@ RUN set -eux; \
129
130
################ end-copy-pasta ################
131
132
-ENV wd /opt/test-runner
+ENV wd=/opt/test-runner
133
RUN mkdir -p ${wd}/bin
134
135
COPY --from=build-rust-test-runner /rust-test-runner/target/release/rust_test_runner bin
0 commit comments