ulovliglogning.dk/Dockerfile
Jeppe Ernst a7c724d786
All checks were successful
continuous-integration/drone/push Build is passing
changing build destination to persist _site dir
2020-01-02 23:07:32 +01:00

7 lines
201 B
Docker

FROM jekyll/jekyll:3.7 AS jekyll
ADD . /srv/jekyll
RUN jekyll build --destination /tmp/_site --strict_front_matter
FROM php:7.4.1-apache
RUN a2enmod rewrite
COPY --from=jekyll /tmp/_site /var/www/html