X-Git-Url: https://git.r.bdr.sh/rbdr/r.bdr.sh/blobdiff_plain/377a62f33eee4098b98ef6225f3adee018ceb39c..6b86523814df0265e0a91d1fa2799634c2bf0a72:/Dockerfile diff --git a/Dockerfile b/Dockerfile index b49cbd8..4ea0501 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ruby:3-alpine +FROM ruby:3.0-alpine RUN apk add --no-cache \ build-base \ @@ -14,9 +14,9 @@ WORKDIR /app 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"]