Skip to content

Commit

Permalink
Bugfix for a ARG typo in the Dockerfile
Browse files Browse the repository at this point in the history
The ARG is LOG_CONFIG, not LOGGING_CONFIG
  • Loading branch information
ericbuckley committed Oct 26, 2024
1 parent 0000ec5 commit 403a7c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ARG USE_MSSQL=true
ENV USE_MSSQL=${USE_MSSQL}
# Set default log config
ARG LOG_CONFIG=/code/assets/production_log_config.json
ENV LOG_CONFIG=${LOGGING_CONFIG}
ENV LOG_CONFIG=${LOG_CONFIG}

# Updgrade system packages and install curl
RUN apt-get update && apt-get upgrade -y && apt-get install curl -y
Expand Down

0 comments on commit 403a7c9

Please sign in to comment.