Cookize commited on
Commit
396d5b7
1 Parent(s): 5420af9

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -42,7 +42,7 @@ RUN --mount=type=secret,id=MONGODB_URL,mode=0444 \
42
  && APP_NAME="${APP_NAME:="$(cat /defaults/APP_NAME)"}" && export APP_NAME \
43
  && MONGODB_URL=$(cat /run/secrets/MONGODB_URL > /dev/null | grep '^' || cat /defaults/MONGODB_URL) && export MONGODB_URL && \
44
  echo "${MONGODB_URL}" \
45
- && API_URL=$(cat /defaults/.api_url) \
46
  envsubst < ".env.local.template" > ".env.local" \
47
  && rm .env.local.template
48
 
 
42
  && APP_NAME="${APP_NAME:="$(cat /defaults/APP_NAME)"}" && export APP_NAME \
43
  && MONGODB_URL=$(cat /run/secrets/MONGODB_URL > /dev/null | grep '^' || cat /defaults/MONGODB_URL) && export MONGODB_URL && \
44
  echo "${MONGODB_URL}" \
45
+ && API_URL=$(cat /defaults/.api_url) && export API_URL && echo "${API_URL}" \
46
  envsubst < ".env.local.template" > ".env.local" \
47
  && rm .env.local.template
48