-FROM ruby:3-alpine
+FROM ruby:3.0-alpine
RUN apk add --no-cache \
build-base \
COPY Gemfile.lock .
COPY Gemfile .
-RUN bundle install --deployment
+RUN bundle install
COPY scripts/mime.types /etc/mime.types
COPY . .
-ENTRYPOINT ["bundle", "exec", "jekyll"]
+ENTRYPOINT ["jekyll"]