mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #2596 from overleaf/jpa-build-scripts-1-3-5
[misc] align the Dockerfile to the build scripts version 1.3.5 GitOrigin-RevId: cdda059b68068b9b4de87520cff91ce179426836
This commit is contained in:
parent
4131e5ce7b
commit
5c7251afce
1 changed files with 7 additions and 2 deletions
|
@ -1,7 +1,12 @@
|
|||
FROM node:10.19.0 as app
|
||||
FROM node:10.19.0 as base
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# install_deps changes app files and installs npm packages
|
||||
# as such it has to run at a later stage
|
||||
|
||||
FROM base as app
|
||||
|
||||
#wildcard as some files may not be in all repos
|
||||
COPY package.json package-lock.json /app/
|
||||
|
||||
|
@ -10,7 +15,7 @@ RUN npm install --quiet
|
|||
|
||||
COPY . /app
|
||||
|
||||
FROM node:10.19.0
|
||||
FROM base
|
||||
|
||||
COPY --from=app /app /app
|
||||
|
||||
|
|
Loading…
Reference in a new issue