diff options
| author | Kevin J Hoerr <kjhoerr@protonmail.com> | 2021-09-21 03:05:09 +0000 |
|---|---|---|
| committer | Kevin J Hoerr <kjhoerr@protonmail.com> | 2021-09-21 03:05:09 +0000 |
| commit | 506ae8772e1bf6591081dccfdd02caea8892b3d0 (patch) | |
| tree | 8a028e2783f366f47cbcc2a19ddfcffc6921da35 /Dockerfile | |
| parent | 400ab021c92101bc6db1f70fba41e673de7ee14a (diff) | |
| download | ao-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-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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" ] |
