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