From 506ae8772e1bf6591081dccfdd02caea8892b3d0 Mon Sep 17 00:00:00 2001 From: Kevin J Hoerr Date: Tue, 21 Sep 2021 03:05:09 +0000 Subject: 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) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Dockerfile') 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" ] -- cgit