mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
8789296f5a
[misc] upgrade node version from 14.18.1 to 14.18.3 GitOrigin-RevId: 976542fcc0271e323695c59a987dcf1614ee633e
20 lines
420 B
Docker
20 lines
420 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/chat
|
|
|
|
FROM base as app
|
|
|
|
COPY services/chat/package*.json /overleaf/services/chat/
|
|
|
|
RUN npm ci --quiet
|
|
|
|
COPY services/chat /overleaf/services/chat
|
|
|
|
FROM app
|
|
USER node
|
|
|
|
CMD ["node", "--expose-gc", "app.js"]
|