Files
docs/Dockerfile

6 lines
110 B
Docker
Raw Normal View History

2023-05-23 21:35:35 +02:00
FROM klakegg/hugo as build
COPY . /src
2023-05-23 21:29:28 +02:00
FROM nginx:alpine
2023-05-23 21:35:35 +02:00
COPY --from=build /src/public /usr/share/nginx/html