Skip to content

Commit

Permalink
Fix Docker ENV format
Browse files Browse the repository at this point in the history
  • Loading branch information
Bjorn Jorgensen committed Jul 26, 2024
1 parent 6144d39 commit 5022fef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build/package/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ COPY web/ ./
ARG VERSION
ARG COMMIT
ARG BUILD_DATE
ENV VERSION $VERSION
ENV COMMIT $COMMIT
ENV BUILD_DATE $BUILD_DATE
ENV VERSION=$VERSION
ENV COMMIT=$COMMIT
ENV BUILD_DATE=$BUILD_DATE

ARG LDFLAGS="-X 'main.Version=${VERSION}' -X 'main.Commit=${COMMIT}' -X 'main.BuildDate=${BUILD_DATE}'"

Expand Down

0 comments on commit 5022fef

Please sign in to comment.