publiccode.si/Dockerfile

23 lines
729 B
Docker
Raw Normal View History

2017-06-13 10:38:29 +02:00
FROM php:7.0-apache
2017-06-13 11:35:25 +02:00
ENV HUGO_VERSION 0.20.7
ENV HUGO_BINARY hugo_${HUGO_VERSION}_Linux-64bit.deb
2017-06-13 10:52:59 +02:00
2017-06-13 10:38:29 +02:00
RUN apt-get update && apt-get upgrade -y && \
apt-get install -y git curl unzip python3
2017-06-13 12:21:53 +02:00
RUN curl -sS https://getcomposer.org/installer \
| php -- --install-dir=/usr/local/bin --filename=composer
RUN composer require phpmailer/phpmailer
2017-06-13 11:01:15 +02:00
2017-06-13 11:35:25 +02:00
ADD https://github.com/spf13/hugo/releases/download/v${HUGO_VERSION}/${HUGO_BINARY} /tmp/hugo.deb
RUN dpkg -i /tmp/hugo.deb \
&& rm /tmp/hugo.deb
2017-06-13 10:38:29 +02:00
COPY site/ /usr/share/blog
2017-06-13 11:23:58 +02:00
RUN sed -i.bak "s;/var/www/html;/usr/share/blog/public;" /etc/apache2/sites-enabled/000-default.conf
CMD /usr/share/blog/build/build.sh /usr/share/blog/data/signatures/signatures.json && apache2-foreground