annabunches.net/Dockerfile

9 lines
136 B
Docker
Raw Normal View History

FROM hugomods/hugo:0.128.1 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