[misc] use node:10.19.0 as base image

Also adjust the node version in the other build-script files.
This commit is contained in:
Jakob Ackermann
2020-02-07 14:46:24 +01:00
parent 812c4e661f
commit e897945a17
3 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
FROM gcr.io/overleaf-ops/node:10.19.0 as app
FROM node:10.19.0 as app
WORKDIR /app
@@ -12,7 +12,7 @@ COPY . /app
RUN npm run compile:all
FROM gcr.io/overleaf-ops/node:10.19.0
FROM node:10.19.0
COPY --from=app /app /app