upgrade Dockerfile to use Node.js 14.17

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2021-08-16 19:19:23 +02:00
parent 9dfdc81dd0
commit 0e2723b097
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
2 changed files with 8 additions and 5 deletions

3
.dockerignore Normal file
View File

@ -0,0 +1,3 @@
*
!src/
!package.json

View File

@ -1,4 +1,8 @@
FROM node:10.14-alpine
FROM node:14.17-alpine
LABEL source="https://github.com/status-im/github-comment-manager" \
description="Basic NodeJS API for managing CI build GitHub posts." \
maintainer="jakub@status.im"
WORKDIR /app
@ -15,9 +19,5 @@ ENV LOG_LEVEL=INFO \
GH_REPO_OWNER='' \
GH_REPO_NAME=''
LABEL source="https://github.com/status-im/github-comment-manager" \
description="Basic NodeJS API for managing CI build GitHub posts." \
maintainer="jakub@status.im"
CMD ["npm", "start"]
EXPOSE $LISTEN_PORT