erick.is/Dockerfile

10 lines
220 B
Text
Raw Normal View History

2024-12-01 09:29:34 -05:00
FROM ruby:3.3
EXPOSE 4000
WORKDIR /app
COPY Gemfile .
2024-12-20 04:48:04 -05:00
RUN gem install bundler && bundle install
ENTRYPOINT [ "bundle", "exec", "jekyll" ]
CMD [ "serve", "-H", "0.0.0.0", "--force_polling", "--livereload", "--drafts" ]