forked from ulovliglogning/ulovliglogning.dk
9 lines
245 B
Docker
9 lines
245 B
Docker
FROM jekyll/jekyll:3.7 AS jekyll
|
|
#ADD ./.gem-cache/bundle /usr/local/bundle
|
|
ADD . /srv/jekyll
|
|
RUN jekyll build --strict_front_matter
|
|
RUN ls /srv/jekyll
|
|
|
|
FROM php:7.4.1-apache
|
|
RUN a2enmod rewrite
|
|
COPY --from=jekyll /srv/jekyll/_site /var/www/html |