publiccode.si/Dockerfile

27 lines
698 B
Docker
Raw Normal View History

2017-06-13 10:38:29 +02:00
FROM php:7.0-apache
ENV HUGO_VERSION 0.26
2017-06-13 11:35:25 +02:00
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 && \
2017-09-12 09:56:30 +02:00
apt-get install -y git curl unzip python3 python3-pip libyaml-dev
RUN pip3 install awscli
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
RUN a2enmod rewrite
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
COPY 000-default.conf /etc/apache2/sites-enabled/
CMD /usr/share/blog/build/build.sh && apache2-foreground