chore(docker): Default NODE_ENV to production for server image and update alpine version (#2157)

* default NODE_ENV to production for server image

* update node image to use 3.17 alpine in server

* update web docker image to use alpine 3.17

* remove NODE_ENV from production docker-compose

* NODE_ENV is also needed default in machine-learning
This commit is contained in:
Devin Buhl
2023-04-03 16:05:29 -04:00
committed by GitHub
parent c584791b65
commit 2dcccb37a0
4 changed files with 7 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
# Our Node base image
FROM node:16-alpine3.14 as base
FROM node:16-alpine3.17 as base
WORKDIR /usr/src/app
EXPOSE 3000