update to Node 14 in Dockerfile

pull/6811/head
Conduitry 5 years ago
parent fa6557e198
commit 87cf8f5aae

@ -1,7 +1,7 @@
# IMPORTANT: Don't use this Dockerfile in your own projects without also looking at the .dockerignore file.
# Without an appropriate .dockerignore, this Dockerfile will copy a large number of unneeded files into your image.
FROM mhart/alpine-node:12
FROM mhart/alpine-node:14
# install dependencies
WORKDIR /app
@ -12,7 +12,7 @@ RUN npm ci --production
# Only copy over the Node pieces we need
# ~> Saves 35MB
###
FROM mhart/alpine-node:slim-12
FROM mhart/alpine-node:slim-14
WORKDIR /app
COPY --from=0 /app .

Loading…
Cancel
Save