erick.is/Dockerfile.jekyll
Erick Ruiz de Chavez 6911ad6f64 Rename jekyll's docker file
Since this is no longer a Jekyll-only site I decided to rename the Dockerfile used for the Jekyll site to Dockerfile.jekyll to be consistent with the Gemini Dockerfile (Dockerfile.gemini).
2024-12-29 07:41:32 -05:00

9 lines
220 B
Text

FROM ruby:3.3
EXPOSE 4000
WORKDIR /app
COPY Gemfile .
RUN gem install bundler && bundle install
ENTRYPOINT [ "bundle", "exec", "jekyll" ]
CMD [ "serve", "-H", "0.0.0.0", "--force_polling", "--livereload", "--drafts" ]