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

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -41,8 +41,7 @@ RUN --mount=type=secret,id=MONGODB_URL,mode=0444 \
41
  && APP_COLOR="${APP_COLOR:="$(cat /defaults/APP_COLOR)"}" && export APP_COLOR \
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
 
 
41
  && APP_COLOR="${APP_COLOR:="$(cat /defaults/APP_COLOR)"}" && export APP_COLOR \
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
  envsubst < ".env.local.template" > ".env.local" \
46
  && rm .env.local.template
47