mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
f3f0be5c56
Change directory layout in service containers GitOrigin-RevId: 09ff19db2a123cbf7691d51e9ce9be6eee264287
20 lines
440 B
Docker
20 lines
440 B
Docker
# This file was auto-generated, do not edit it directly.
|
|
# Instead run bin/update_build_scripts from
|
|
# https://github.com/sharelatex/sharelatex-dev-environment
|
|
|
|
FROM node:14.18.1 as base
|
|
|
|
WORKDIR /overleaf/services/docstore
|
|
|
|
FROM base as app
|
|
|
|
COPY services/docstore/package*.json /overleaf/services/docstore/
|
|
|
|
RUN npm ci --quiet
|
|
|
|
COPY services/docstore /overleaf/services/docstore
|
|
|
|
FROM app
|
|
USER node
|
|
|
|
CMD ["node", "--expose-gc", "app.js"]
|