Files
MyPlaygroundBlog/Dockerfile
Carl Tibule 2073cb9d9a
Some checks failed
ci/woodpecker/push/build Pipeline failed
Attempting to fix woodpecker build failure
- public folder is not being found
2024-08-25 02:04:44 -05:00

7 lines
123 B
Docker

FROM alpine:latest
RUN apk add --update hugo
RUN hugo
FROM nginx:stable-alpine
COPY public /usr/share/nginx/html
EXPOSE 80