docs/Dockerfile

6 lines
110 B
Docker
Raw Normal View History

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