aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorKevin J Hoerr <kjhoerr@protonmail.com>2021-09-21 03:05:09 +0000
committerKevin J Hoerr <kjhoerr@protonmail.com>2021-09-21 03:05:09 +0000
commit506ae8772e1bf6591081dccfdd02caea8892b3d0 (patch)
tree8a028e2783f366f47cbcc2a19ddfcffc6921da35 /Dockerfile
parent400ab021c92101bc6db1f70fba41e673de7ee14a (diff)
downloadao-coverage-506ae8772e1bf6591081dccfdd02caea8892b3d0.tar.gz
ao-coverage-506ae8772e1bf6591081dccfdd02caea8892b3d0.tar.bz2
ao-coverage-506ae8772e1bf6591081dccfdd02caea8892b3d0.zip
Tweaks and Fixes
- Change default port for Dockerfile to 80 - Use cobertura for coverage report :) - Add starter data for .devcontainer - Add FORMAT var for sh script (*needs change)
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 510681f..9af85dd 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -34,7 +34,7 @@ COPY --from=build /app/build ./build
COPY public ./public
ENV NODE_ENV=production \
- PORT=8080 \
+ PORT=80 \
BIND_ADDRESS=0.0.0.0 \
UPLOAD_LIMIT=134217700 \
LOG_LEVEL=info \
@@ -44,4 +44,4 @@ RUN mkdir -p ${HOST_DIR}
VOLUME [ "${HOST_DIR}" ]
EXPOSE ${PORT}
-CMD [ "node", "./build/index.js" ] \ No newline at end of file
+CMD [ "node", "./build/index.js" ]