Skip to content

Commit

Permalink
Merge pull request #316 from rngadam/rngadam/issue315
Browse files Browse the repository at this point in the history
Fixes #315: use ARG and ENV
  • Loading branch information
WadeBarnes authored Aug 15, 2024
2 parents 58dd883 + 8b02c7c commit 2b59570
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
FROM bcgovimages/von-image:node-1.12-6

ENV LOG_LEVEL ${LOG_LEVEL:-info}
ENV RUST_LOG ${RUST_LOG:-warning}
ARG LOG_LEVEL=info
ARG RUST_LOG=warning
ENV LOG_LEVEL=$LOG_LEVEL
ENV RUST_LOG=$RUST_LOG

ADD config ./config
ADD server/requirements.txt server/
Expand Down

0 comments on commit 2b59570

Please sign in to comment.