Skip to content

Commit

Permalink
fix : specify the default hostname if docker builds with a proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
gtoxlili committed May 24, 2023
1 parent ed14a00 commit 707c1a2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ 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"
fi; \
protocol=$(echo $PROXY_URL | cut -d: -f1); \
host=$(echo $PROXY_URL | cut -d/ -f3 | cut -d: -f1); \
port=$(echo $PROXY_URL | cut -d: -f3); \
Expand Down

0 comments on commit 707c1a2

Please sign in to comment.