From f036dcf0f3022fdeafcaa0c76d5d2bbe64616e2f Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Tue, 1 Nov 2022 13:52:31 +0100 Subject: [PATCH] [Dockerfile] Fixed entrypoint --- Dockerfile.linux.amd64 | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Dockerfile.linux.amd64 b/Dockerfile.linux.amd64 index 07d668a..857bb86 100644 --- a/Dockerfile.linux.amd64 +++ b/Dockerfile.linux.amd64 @@ -20,10 +20,4 @@ RUN set -e \ EXPOSE 8080 ENTRYPOINT ["/usr/local/bin/hugo", "server"] -CMD [ - - "--baseUrl=start.simoncor.net", - - "--bind=0.0.0.0", - - "--port 8080", - - "--source=/site/", - - "--theme slate" -] +CMD ["--baseUrl=start.simoncor.net", "--bind=0.0.0.0", "--port 8080", "--source=/site/", "--theme slate"]