This commit is contained in:
2025-08-09 14:28:03 +02:00
parent 3be61bf754
commit 9d9164311a
3 changed files with 37 additions and 0 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM docker.io/hugomods/hugo:latest AS build
WORKDIR /src
COPY . .
RUN hugo
FROM nginx:alpine
COPY --from=build /src/public /usr/share/nginx/html