Fixes for new multi-stage dockerfile

This commit is contained in:
Anna Rose 2019-12-04 21:27:32 -05:00
parent 0fe4708ecf
commit 13e7ccb5a5

View File

@ -1,8 +1,8 @@
FROM jekyll/jekyll as build
WORKDIR /src
COPY . /src
jekyll build
WORKDIR /srv/jekyll
COPY . /srv/jekyll
RUN jekyll build --trace && cp -a _site/ /tmp/site
FROM nginx
COPY --from=build /src/_site /usr/share/nginx/html
COPY --from=build /tmp/site /usr/share/nginx/html