From 3fe5903e21262a7dcb77644b4e72d7686d152b54 Mon Sep 17 00:00:00 2001 From: Cloufish <32965886+Cloufish@users.noreply.github.com> Date: Thu, 9 Nov 2023 14:42:03 +0100 Subject: [PATCH] Update Dockerfile The Exposed Port should be the one that is specified in the documentation. Port 80 causes routing issues. I got "Bad Gateway, Connection Refused" when I try to connect to the webpage via Traefik --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 254720004..3e7e6cbf3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,6 +29,6 @@ RUN npm ci --only=production RUN apk del make python3 g++ -EXPOSE 80 +EXPOSE 13378 CMD ["node", "index.js"]