From 48b278c0b19c94216828a2952dcc70c042b52ca3 Mon Sep 17 00:00:00 2001 From: 007gzs <007gzs@gmail.com> Date: Thu, 30 Oct 2025 16:20:37 +0800 Subject: [PATCH] Add HOST environment variable to Dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index d66091d1..cbb85ecc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -44,6 +44,7 @@ COPY --from=builder /app/cli/build ./cli/build # Set default port values as environment variables ENV CLIENT_PORT=6274 ENV SERVER_PORT=6277 +ENV HOST=0.0.0.0 # Document which ports the application uses internally EXPOSE ${CLIENT_PORT} ${SERVER_PORT}