erick.is/Dockerfile
Erick Ruiz de Chavez 0cb1cae3b4 New Jekyll site
2024-12-01 09:31:05 -05:00

9 lines
193 B
Docker

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