Bumped node to version 16 LTS

This commit is contained in:
2021-11-17 04:43:11 +00:00
parent 69aff6ec32
commit 8c053e75aa
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
FROM node:15
FROM node:16
WORKDIR "/app"
COPY package*.json ./
COPY . /app
RUN npm install --production
COPY . /app
EXPOSE 3300
USER node
ENTRYPOINT ["bash", "-c"]