mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
[misc] upgrade node version from 14.18.1 to 14.18.3 GitOrigin-RevId: 976542fcc0271e323695c59a987dcf1614ee633e
21 lines
440 B
Docker
21 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.3 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"]
|