mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
16 lines
248 B
Docker
16 lines
248 B
Docker
FROM node:6.13.0
|
|
|
|
COPY ./ /app
|
|
|
|
WORKDIR /app
|
|
|
|
RUN npm install
|
|
|
|
RUN [ -e ./install_deps.sh ] && ./install_deps.sh
|
|
|
|
RUN npm run compile
|
|
|
|
ENV SHARELATEX_CONFIG /app/config/settings.production.coffee
|
|
ENV NODE_ENV production
|
|
|
|
CMD ["node","/app/app.js"]
|