Redid the Dockerfile to get arround error with the public folder not being found
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
2024-08-25 20:44:03 -05:00
parent 2073cb9d9a
commit 8c3b1a3617

View File

@ -1,7 +1,12 @@
FROM alpine:latest
# Reference https://medium.com/@lorique/howto-multi-stage-docker-builds-with-hugo-78a53565d567
FROM alpine:latest AS build
RUN apk add --update hugo
WORKDIR /opt/HugoApp
COPY . .
RUN hugo
FROM nginx:stable-alpine
COPY public /usr/share/nginx/html
EXPOSE 80
WORKDIR /usr/share/nginx/html
COPY --from=build /opt/HugoApp/public .
EXPOSE 80/tcp