mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-14 12:04:46 +00:00
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:
parent
84829abf9a
commit
6185fe8a30
3 changed files with 5 additions and 5 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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 -
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue