[Dockerfile] Fixed entrypoint
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simon Cornet 2022-11-01 14:44:43 +01:00
parent 3c94d598ff
commit 77ae794404

View File

@ -18,6 +18,6 @@ RUN set -e \
RUN set -e \ RUN set -e \
&& git clone https://git.simoncor.net/siempie/start.simoncor.net.git /site/ && git clone https://git.simoncor.net/siempie/start.simoncor.net.git /site/
EXPOSE 8080 EXPOSE 80
ENTRYPOINT ["/usr/local/bin/hugo", "server"] ENTRYPOINT ["/usr/local/bin/hugo", "server"]
CMD ["--baseUrl=http://start.simoncor.net", "--bind=0.0.0.0", "--port=80", "--source=/site/", "--theme=slate"] CMD ["--appendPort=false", "--baseUrl=http://start.simoncor.net", "--bind=0.0.0.0", "--port=80", "--source=/site/", "--theme=slate"]