site-deploy/Dockerfile

8 lines
207 B
Docker
Raw Normal View History

2017-12-14 21:20:41 +00:00
from jekyll/jekyll as builder
add web /srv/jekyll
2020-04-22 20:41:57 +00:00
run bundle exec jekyll build --source /srv/jekyll --destination /tmp
2017-11-17 15:19:44 +00:00
2017-12-14 21:20:41 +00:00
from nginx:alpine
copy --from=builder /tmp /usr/share/nginx/html
2019-07-08 21:08:03 +00:00
copy nginx /etc/nginx