diff --git a/Dockerfile b/Dockerfile index e083345..d577e66 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,11 +2,11 @@ # it is a very light docker image. FROM ruby:2-slim LABEL author="Sujay Kundu" -LABEL version="1.0.0" +LABEL version="1.0.1" # Lets install all dependencies -# including git and Bundler 2.1.4 -ENV BUNDLER_VERSION 2.1.4 +# including git and Bundler 2.2.6 from 2.1.4 +ENV BUNDLER_VERSION 2.2.6 RUN apt-get update && \ apt-get install --no-install-recommends -y \ bats \ @@ -18,7 +18,7 @@ RUN apt-get update && \ shellcheck \ libffi6 \ git-all \ - && gem install bundler:2.1.4 \ + && gem install bundler:2.2.6 \ && bundle config --global silence_root_warning 1 # This is our entrypoint to our custom scripts @@ -27,4 +27,4 @@ COPY entrypoint.sh /entrypoint.sh # Use the entrypoint.sh file as the container entrypoint # when Github executes our Docker container -ENTRYPOINT ["sh", "/entrypoint.sh"] \ No newline at end of file +ENTRYPOINT ["sh", "/entrypoint.sh"]