Skip to content

Commit eb87622

Browse files
update dockerfile to use equals syntax for environment variables
1 parent 7d93b60 commit eb87622

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
@@ -15,7 +15,7 @@ FROM $LAB_IMAGE_REF AS lab
1515
FROM ubuntu:22.04
1616

1717
ARG REVISION
18-
ENV REVISION $REVISION
18+
ENV REVISION=$REVISION
1919

2020
EXPOSE 5432
2121
EXPOSE 6060
@@ -62,6 +62,6 @@ RUN ["chmod", "+x", "start"]
6262

6363
ARG PROTOCOL_VERSION_DEFAULT
6464
RUN test -n "$PROTOCOL_VERSION_DEFAULT" || (echo "Image build arg PROTOCOL_VERSION_DEFAULT required and not set" && false)
65-
ENV PROTOCOL_VERSION_DEFAULT $PROTOCOL_VERSION_DEFAULT
65+
ENV PROTOCOL_VERSION_DEFAULT=$PROTOCOL_VERSION_DEFAULT
6666

6767
ENTRYPOINT ["/start"]

0 commit comments

Comments
 (0)