-FROM ruby:3-alpine
+FROM ruby:3.0-alpine
RUN apk add --no-cache \
build-base \
RUN rm -rf /var/cache/apk/*
RUN bundle config --global frozen 1
-RUN bundle config --global deployment 'true'
-RUN bundle config set --local without 'development'
WORKDIR /app
COPY scripts/mime.types /etc/mime.types
COPY . .
-ENTRYPOINT ["bundle", "exec", "jekyll"]
+ENTRYPOINT ["jekyll"]