From c41dffbce6c4b7f425e1104910f3d11fd69fcd6a Mon Sep 17 00:00:00 2001 From: Michael Ottati Date: Wed, 20 May 2026 17:47:22 -0700 Subject: [PATCH] Proposed fix for issue #453 This is a potential workaround to get past the out of the box experience of having the sample container deployment fail. I don't have enough background knowledge of what the full dependency requirements are for the container to run the example. This got me around the issue so I thought I would propose the change. --- Dockerfile | 4 ---- docker-compose.yaml | 6 +----- 2 files changed, 1 insertion(+), 9 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 232d8f70c4e..00000000000 --- a/Dockerfile +++ /dev/null @@ -1,4 +0,0 @@ -FROM floryn90/hugo:ext-alpine - -RUN apk add git && \ - git config --global --add safe.directory /src diff --git a/docker-compose.yaml b/docker-compose.yaml index e75500c945c..ee472eb68a0 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -1,10 +1,6 @@ -version: '3.8' - services: site: - image: docsy/docsy-example - build: - context: . + image: hugomods/hugo:debian-exts-non-root-0.154.5 command: server ports: - '1313:1313'