2017-06-13 10:38:29 +02:00
|
|
|
FROM php:7.0-apache
|
2017-06-13 10:14:58 +02:00
|
|
|
|
2017-09-13 18:19:08 +02:00
|
|
|
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
|
|
|
|
2017-06-19 23:06:51 +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
|
|
|
|
2017-06-19 22:35:41 +02:00
|
|
|
COPY 000-default.conf /etc/apache2/sites-enabled/
|
2017-06-15 14:19:52 +02:00
|
|
|
|
2018-04-25 20:55:44 +02:00
|
|
|
CMD /usr/share/blog/build/build.sh && apache2-foreground
|