Dockerfile
This commit is contained in:
parent
69f4fa0fb9
commit
f5ab152328
@ -9,5 +9,5 @@ RUN gem install bundle
|
|||||||
RUN git init && git remote add origin https://gitlab.com/labcode-de/ffrs-website.git
|
RUN git init && git remote add origin https://gitlab.com/labcode-de/ffrs-website.git
|
||||||
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 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 v2 && /usr/local/bin/bundle exec jekyll build && rm -rf /usr/share/nginx/html/* && cp -r _site/* /usr/share/nginx/html" > /srv/update.sh
|
RUN echo "cd /project && git pull origin v2 && /usr/local/bin/bundle exec jekyll build && rm -rf /usr/share/nginx/html/* && cp -r _site/* /usr/share/nginx/html" > /srv/update.sh
|
||||||
RUN echo "*/1 * * * * root /srv/update.sh >> /var/log/cron.log 2>&1" > /etc/cron.d/update
|
RUN echo "*/30s * * * * root /srv/update.sh >> /var/log/cron.log 2>&1" > /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" && /etc/init.d/cron start && nginx -g "daemon off;"
|
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" && /etc/init.d/cron start && nginx -g "daemon off;"
|
||||||
|
Loading…
Reference in New Issue
Block a user