Parcourir la source

fix : specify the default hostname if docker builds with a proxy

gtoxlili il y a 1 an
Parent
commit
aa2be9b96c
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      Dockerfile

+ 2 - 2
Dockerfile

@@ -41,8 +41,8 @@ COPY --from=builder /app/.next/server ./.next/server
 EXPOSE 3000
 
 CMD if [ -n "$PROXY_URL" ]; then \
-        if [ -z "$HOSTNAME" ]; then
-          HOSTNAME="127.0.0.1"
+        if [ -z "$HOSTNAME" ]; then \
+          export HOSTNAME="127.0.0.1" \
         fi; \
         protocol=$(echo $PROXY_URL | cut -d: -f1); \
         host=$(echo $PROXY_URL | cut -d/ -f3 | cut -d: -f1); \