Upgrade Docker image to node 10

This commit is contained in:
Simon Detheridge 2019-12-13 15:46:35 +00:00
parent ed97fcfcd0
commit c9106eff95

View file

@ -1,4 +1,4 @@
FROM node:6.9.5 as app
FROM node:10.17.0-jessie as app
WORKDIR /app
@ -9,10 +9,9 @@ RUN npm install --quiet
COPY . /app
RUN npm run compile:all
FROM node:6.9.5
FROM node:10.17.0-jessie
COPY --from=app /app /app