24 lines
673 B
Docker
24 lines
673 B
Docker
FROM php:7.0-apache
|
|
|
|
ENV HUGO_VERSION 0.20.7
|
|
ENV HUGO_BINARY hugo_${HUGO_VERSION}_Linux-64bit.deb
|
|
|
|
RUN apt-get update && apt-get upgrade -y && \
|
|
apt-get install -y git curl unzip
|
|
|
|
RUN curl -sS https://getcomposer.org/installer \
|
|
| php -- --install-dir=/usr/local/bin --filename=composer
|
|
|
|
RUN composer require phpmailer/phpmailer
|
|
|
|
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
|
|
|
|
RUN mkdir /usr/share/blog
|
|
COPY site/ /usr/share/blog
|
|
|
|
RUN /usr/share/blog/build/build.sh /usr/share/blog/data/signatures/signatures.json
|
|
RUN cp -a /usr/share/blog/public/* /var/www/html
|
|
|