simoncor.net/Dockerfile.linux.amd64
Simon Cornet 0b8073d272
All checks were successful
continuous-integration/drone/push Build is passing
[Dockerfile] Specified docker registry
2023-05-24 12:49:16 +02:00

16 lines
405 B
Docker

FROM docker.io/rakepanorama/hugo-sws:latest
# clone site and template
RUN set -e \
&& git clone --recursive https://git.simoncor.net/siempie/simoncor.net.git /site
# generate site
RUN set -e \
&& /usr/local/bin/hugo --source=/site/
# expose 80
EXPOSE 80
# start static-web-server
ENTRYPOINT ["/usr/local/bin/sws", "--host=0.0.0.0", "--log-level=info", "--port=80", "--root=/site/public/"]