aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 731b7842be47dc0ae905eff161ab1f65dc40eabb (plain)
1
2
3
4
5
6
FROM jekyll/jekyll AS build
COPY . /srv/jekyll
RUN jekyll build

FROM nginx
COPY --from=build /srv/jekyll/_site /usr/share/nginx/html