Finanzen PDF hinzugefuegt

This commit is contained in:
Leo Maroni 2018-05-17 21:12:50 +02:00
parent 1d5c2a0332
commit 072e8f42a2
No known key found for this signature in database
GPG Key ID: D1C3D579B60CB591
2 changed files with 3 additions and 5 deletions

View File

@ -7,9 +7,7 @@ WORKDIR /project
RUN apt-get update -y && apt-get install -y git ruby ruby-dev rubygems build-essential cron
RUN gem install bundle
RUN git init && git remote add origin https://gitlab.com/labcode-de/ffrs-website.git
RUN mkdir -p /etc/cron && touch /etc/cron/crontab && touch /srv/update.sh
RUN touch /etc/cron.d/update && touch /srv/update.sh && chmod 775 /srv/update.sh && chmod 644 /etc/cron.d/update
RUN echo "git pull origin v2 && bundle exec jekyll build && rm -rf /usr/share/nginx/html/* && cp -r _site/* /usr/share/nginx/html" > /srv/update.sh
RUN echo "*/1 * * * * /bin/bash /srv/update.sh" > /etc/cron/crontab
RUN crontab /etc/cron/crontab
CMD git fetch && git pull origin v2 && bundle install && bundle exec jekyll build && rm -rf /usr/share/nginx/html/* && cp -r _site/* /usr/share/nginx/html && echo "ready" && nginx -g "daemon off;" && crond -f
RUN echo "*/1 * * * * /srv/update.sh" > /etc/cron.d/update
CMD git fetch && git pull origin v2 && bundle install && bundle exec jekyll build && rm -rf /usr/share/nginx/html/* && cp -r _site/* /usr/share/nginx/html && echo "ready" && nginx -g "daemon off;" && /etc/init.d/cron start

Binary file not shown.