erick.is/Dockerfile

10 lines
193 B
Text
Raw Normal View History

2024-12-01 09:29:34 -05:00
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" ]