richtige Satzung

This commit is contained in:
Leo Maroni 2018-05-17 19:58:44 +02:00
parent ea49eba7b6
commit 1d5c2a0332
No known key found for this signature in database
GPG Key ID: D1C3D579B60CB591
2 changed files with 8 additions and 2 deletions

View File

@ -4,6 +4,12 @@ EXPOSE 80
RUN mkdir -p /project/ RUN mkdir -p /project/
WORKDIR /project WORKDIR /project
RUN apt-get update -y && apt-get install -y git ruby ruby-dev rubygems build-essential RUN apt-get update -y && apt-get install -y git ruby ruby-dev rubygems build-essential cron
RUN gem install bundle RUN gem install bundle
CMD git init && git remote add origin https://github.com/Freifunk-Rhein-Sieg/freifunk-rhein-sieg.net && 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;" 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 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