mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-31 20:45:01 +00: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"]
|