diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..9216ab5 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM alpine:3.20 AS build + +WORKDIR /app +COPY . . + +RUN apk add --no-cache hugo=0.125.4-r3 +CMD ["hugo"] + +FROM nginx:1.21.3-alpine AS production + +COPY --from=build /app/public /usr/share/nginx/html diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..e975e5b --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,6 @@ +services: + web: + build: . + restart: unless-stopped + ports: + - 80:80