Merge pull request #2581 from overleaf/jpa-change-base-image

[misc] use node:10.19.0 as base image

GitOrigin-RevId: c66ab9df06533261b12883c328673572f76b1647
This commit is contained in:
Jakob Ackermann 2020-02-07 15:57:14 +01:00 committed by Copybot
parent 84829abf9a
commit 6185fe8a30
3 changed files with 5 additions and 5 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
@ -10,7 +10,7 @@ RUN npm install --quiet
COPY . /app
FROM gcr.io/overleaf-ops/node:10.19.0
FROM node:10.19.0
COPY --from=app /app /app

View file

@ -1,4 +1,4 @@
FROM gcr.io/overleaf-ops/node:10.19.0
FROM node:10.19.0
# Install Google Chrome
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -

View file

@ -6,7 +6,7 @@ volumes:
services:
test_unit:
image: gcr.io/overleaf-ops/node:10.19.0
image: node:10.19.0
volumes:
- .:/app
working_dir: /app
@ -16,7 +16,7 @@ services:
user: node
test_acceptance:
image: gcr.io/overleaf-ops/node:10.19.0
image: node:10.19.0
volumes:
- .:/app
working_dir: /app