Upgrade Docker image to Node 10 and Alpine 3.8

This commit is contained in:
Antonin Stefanutti 2018-08-09 20:13:27 +02:00
parent 7500d53c82
commit 17562f27c7
No known key found for this signature in database
GPG Key ID: 451D46E2047E7837

View File

@ -1,4 +1,4 @@
FROM node:9-alpine as builder FROM node:10-alpine as builder
ENV NODE_ENV production ENV NODE_ENV production
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true
@ -19,7 +19,7 @@ RUN npm install && \
rm -rf node_modules/hummus/src && \ rm -rf node_modules/hummus/src && \
rm -rf node_modules/hummus/build rm -rf node_modules/hummus/build
FROM alpine:3.7 FROM alpine:3.8
ENV TERM xterm-color ENV TERM xterm-color
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true