Fix Dockerfile for build

This commit is contained in:
Guillaume 2023-05-23 21:35:35 +02:00
parent 78d68e0909
commit 23cb07259c

View File

@ -1,3 +1,5 @@
FROM klakegg/hugo as build
COPY . /src
FROM nginx:alpine
COPY . /usr/share/nginx/html
COPY --from=build /src/public /usr/share/nginx/html