From 2073cb9d9a28d802c9281f4bee1f404052a53829 Mon Sep 17 00:00:00 2001 From: Carl Tibule Date: Sun, 25 Aug 2024 02:04:44 -0500 Subject: [PATCH] Attempting to fix woodpecker build failure - public folder is not being found --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c44625e..4b195ac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,7 @@ FROM alpine:latest -RUN rm -rf ./public/* RUN apk add --update hugo RUN hugo - FROM nginx:stable-alpine -COPY ./public /usr/share/nginx/html +COPY public /usr/share/nginx/html EXPOSE 80 \ No newline at end of file