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
This commit is contained in:
Cloufish 2023-11-09 14:42:03 +01:00 committed by GitHub
parent 8f4c75ff2b
commit 3fe5903e21
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,6 +29,6 @@ RUN npm ci --only=production
RUN apk del make python3 g++
EXPOSE 80
EXPOSE 13378
CMD ["node", "index.js"]