Skip to content

Commit fcc35c9

Browse files
Dockerfile: use ENV key=value format (#185)
1 parent dfde4b7 commit fcc35c9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ RUN apt-get update && apt-get install -y gcc openssl cmake
1414
FROM build-base AS build-rust-test-runner
1515

1616
RUN mkdir -p /rust-test-runner/src
17-
ENV wd /rust-test-runner
17+
ENV wd=/rust-test-runner
1818
WORKDIR ${wd}
1919
COPY Cargo.* ./
2020
# for caching, we want to download and build all the dependencies before copying
@@ -129,7 +129,7 @@ RUN set -eux; \
129129

130130
################ end-copy-pasta ################
131131

132-
ENV wd /opt/test-runner
132+
ENV wd=/opt/test-runner
133133
RUN mkdir -p ${wd}/bin
134134
WORKDIR ${wd}
135135
COPY --from=build-rust-test-runner /rust-test-runner/target/release/rust_test_runner bin

0 commit comments

Comments
 (0)