Updated dockerfile and build script with monorepo changes

This commit is contained in:
mserranom 2020-02-17 14:58:47 +01:00
parent ead0f21965
commit fa13f4f079
2 changed files with 11 additions and 5 deletions

View file

@ -7,10 +7,16 @@ FROM sharelatex/sharelatex-base:latest
ENV SHARELATEX_CONFIG /etc/sharelatex/settings.coffee
# Checkout Overleaf Community Edition repo
# ----------------------------------------
RUN git clone https://github.com/overleaf/overleaf.git \
--depth 1 /var/www/sharelatex
# Add required source files
# -------------------------
ADD ${baseDir}/bin /var/www/sharelatex/bin
ADD ${baseDir}/doc /var/www/sharelatex/doc
ADD ${baseDir}/migrations /var/www/sharelatex/migrations
ADD ${baseDir}/tasks /var/www/sharelatex/tasks
ADD ${baseDir}/Gruntfile.coffee /var/www/sharelatex/Gruntfile.coffee
ADD ${baseDir}/package.json /var/www/sharelatex/package.json
ADD ${baseDir}/npm-shrinkwrap.json /var/www/sharelatex/npm-shrinkwrap.json
ADD ${baseDir}/services.js /var/www/sharelatex/config/services.js
# Copy build dependencies

View file

@ -12,7 +12,7 @@ grep 'name:' config/services.js | \
web)
npm run webpack:production
;;
chat|filestore|notifications)
chat|filestore|notifications|tags)
echo "$service doesn't require a compilation"
;;
*)