Skip to content

Commit

Permalink
Updated bundler to 2.2.6
Browse files Browse the repository at this point in the history
Earlier bundler was v.2.1.4, updating to 2.2.6
  • Loading branch information
sujaykundu777 authored May 1, 2021
1 parent c60d835 commit 6f2e1e7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand All @@ -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
Expand All @@ -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"]
ENTRYPOINT ["sh", "/entrypoint.sh"]

0 comments on commit 6f2e1e7

Please sign in to comment.