upgrade Docker image to use node:14-alpine

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2020-10-27 10:03:24 +01:00
parent 9de59af196
commit 557f2367dc
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
1 changed files with 2 additions and 2 deletions

View File

@ -1,9 +1,9 @@
FROM node:8.12-slim
FROM node:14-alpine
WORKDIR /app
COPY package.json ./
RUN npm install --only=production
RUN yarn install --production
COPY dist/ ./