annabunches.net/Dockerfile

9 lines
127 B
Docker
Raw Normal View History

2020-05-15 01:45:53 +00:00
FROM klakegg/hugo as build
2020-05-15 01:45:53 +00:00
WORKDIR /src
COPY . /src/
RUN hugo
2018-03-09 04:07:45 +00:00
FROM nginx
2020-05-15 01:45:53 +00:00
COPY --from=build /src/public /usr/share/nginx/html