From 2ed3c8bd09335a4a4d551ecb2780b1683aa6497d Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Tue, 1 Nov 2022 13:27:24 +0100 Subject: [PATCH] [Dockerfile] Fixed entrypoint --- Dockerfile.linux.amd64 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.linux.amd64 b/Dockerfile.linux.amd64 index 1f35847..77e18c5 100644 --- a/Dockerfile.linux.amd64 +++ b/Dockerfile.linux.amd64 @@ -19,4 +19,4 @@ RUN set -e \ && git clone https://git.simoncor.net/siempie/start.simoncor.net.git /site/ EXPOSE 8080 -ENTRYPOINT ["/usr/local/bin/hugo", "server", "--bind 0.0.0.0", "--contentDir /site/", "--port 8080", "--theme slate"] +ENTRYPOINT ["/usr/local/bin/hugo", "server", "--bind='0.0.0.0'", "--contentDir='/site/'", "--port='8080'", "--theme='slate'"]