mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Upgrade Docker image to node 10
This commit is contained in:
parent
ed97fcfcd0
commit
c9106eff95
1 changed files with 2 additions and 3 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue