mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
84829abf9a
update to gcr.io/overleaf-ops/node:10.19.0 GitOrigin-RevId: f0eac5e6397842de5f931d145526de3e0a54336b
21 lines
372 B
Docker
21 lines
372 B
Docker
FROM gcr.io/overleaf-ops/node:10.19.0 as app
|
|
|
|
WORKDIR /app
|
|
|
|
#wildcard as some files may not be in all repos
|
|
COPY package.json package-lock.json /app/
|
|
|
|
RUN npm install --quiet
|
|
|
|
|
|
COPY . /app
|
|
|
|
FROM gcr.io/overleaf-ops/node:10.19.0
|
|
|
|
COPY --from=app /app /app
|
|
|
|
WORKDIR /app
|
|
RUN chmod 0755 ./install_deps.sh && ./install_deps.sh
|
|
USER node
|
|
|
|
CMD ["node", "--expose-gc", "app.js"]
|