jekyll-theme-isabelline/build/Dockerfile-serve

8 lines
288 B
Plaintext
Raw Normal View History

2020-09-05 04:20:42 +00:00
FROM docker.rzen.dev/jekyll:latest
COPY docker-entrypoint.sh /usr/local/bin/
# on every container start, check if Gemfile exists and warn if it's missing
ENTRYPOINT [ "docker-entrypoint.sh" ]
CMD [ "bundle", "exec", "jekyll", "serve", "--force_polling", "-H", "0.0.0.0", "-P", "4000" ]