Erick Ruiz de Chavez
6911ad6f64
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).
9 lines
220 B
Text
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" ]
|