diff --git a/Dockerfile b/Dockerfile index f816d8e..880fff7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,14 +2,14 @@ FROM ruby:3.0.3-alpine3.13 LABEL maintainer="Tonye Jack " -RUN apk add bash git +RUN apk add bash COPY Gemfile* ./ RUN apk add --no-cache \ --virtual .gem-installdeps \ build-base \ - && gem install bundler --version 2.2.16 \ + && gem install bundler --version 2.3.9 \ && bundle config set --local system 'true' \ && bundle install \ && gem uninstall bundler \