„Dockerfile“ ändern

This commit is contained in:
Stefan Hoffmann 2019-12-02 19:05:40 +00:00
parent 4ec864f78c
commit a5f754152a

View File

@ -9,4 +9,5 @@ RUN git init && git remote add origin https://git.freifunk-rhein-sieg.net/Freifu
RUN touch /etc/cron.d/update && touch /srv/update.sh && chmod 775 /srv/update.sh && chmod 644 /etc/cron.d/update && touch /var/log/cron.log
RUN echo "cd /project && git pull origin master && /usr/local/bin/jekyll build && rm -rf /usr/share/nginx/html/* && cp -r _site/* /usr/share/nginx/html" > /srv/update.sh
RUN echo "*/30 * * * * root /srv/update.sh >> /var/log/cron.log 2>&1" > /etc/cron.d/update
RUN gem install bundler:1.16.2
ENTRYPOINT git fetch && git pull origin master && bundle install && bundle exec jekyll build && rm -rf /usr/share/nginx/html/* && cp -r _site/* /usr/share/nginx/html && echo "ready" && /etc/init.d/cron start && nginx -g "daemon off;"