mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Use new build system
This commit is contained in:
parent
837a8ff35f
commit
092a151d51
2 changed files with 15 additions and 14 deletions
|
@ -1,27 +1,24 @@
|
||||||
FROM node:8.9.1
|
FROM node:8.9.1 as app
|
||||||
|
|
||||||
|
COPY ./ /app
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
COPY package.json /app/
|
RUN npm install
|
||||||
|
|
||||||
RUN npm install --quiet
|
|
||||||
|
|
||||||
|
|
||||||
COPY . /app
|
|
||||||
RUN npm run compile:all
|
RUN npm run compile:all
|
||||||
|
|
||||||
FROM node:8.9.1
|
FROM node:8.9.1
|
||||||
|
|
||||||
COPY --from=0 /app /app
|
COPY --from=app /app /app
|
||||||
# All app and node_modules will be owned by root.
|
|
||||||
# The app will run as the 'app' user, and so not have write permissions
|
|
||||||
# on any files it doesn't need.
|
|
||||||
RUN useradd --user-group --create-home --home-dir /app --shell /bin/false app
|
|
||||||
RUN chown app:app /app/uploads
|
|
||||||
|
|
||||||
USER app
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
EXPOSE 3009
|
# All app and node_modules will be owned by root.
|
||||||
|
# The app will run as the 'node' user, and so not have write permissions
|
||||||
|
# on any files it doesn't need.
|
||||||
|
RUN ./install_deps.sh
|
||||||
|
|
||||||
|
USER node
|
||||||
|
|
||||||
CMD ["node","app.js"]
|
CMD ["node","app.js"]
|
||||||
|
|
4
services/filestore/install_deps.sh
Executable file
4
services/filestore/install_deps.sh
Executable file
|
@ -0,0 +1,4 @@
|
||||||
|
#!/bin/sh
|
||||||
|
apt-get install poppler-utils vim ghostscript imagemagick optipng --yes
|
||||||
|
npm rebuild
|
||||||
|
chown -R node:node /app/uploads
|
Loading…
Reference in a new issue