Skip to content

Commit

Permalink
fix: Remove install of specific bundle version
Browse files Browse the repository at this point in the history
  • Loading branch information
jfloff committed Jan 9, 2024
1 parent 4fab275 commit 09a4b16
Show file tree
Hide file tree
Showing 16 changed files with 0 additions and 80 deletions.
5 changes: 0 additions & 5 deletions 18-2.6.6/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,6 @@ RUN set -ex ;\
WORKDIR $HOME
ONBUILD ADD . $HOME
ONBUILD RUN set -ex ;\
# TODO @jfloff : won't be needed when we upgrade to Rails 5
# install bundler packed with Gemfile if we have that information in the Gemfile.lock
# ref: https://bundler.io/blog/2019/01/04/an-update-on-the-bundler-2-release.html
if [ -f Gemfile.lock ]; then GEMFILE_LOCK_BUNDLE_VERSION=$(awk '/BUNDLED WITH/{getline; print}' Gemfile.lock | xargs) ; else GEMFILE_LOCK_BUNDLE_VERSION="" ; fi ;\
gem install --no-document bundler $(if [ -z "$GEMFILE_LOCK_BUNDLE_VERSION" ]; then echo "" ; else echo "-v $GEMFILE_LOCK_BUNDLE_VERSION" ; fi) ;\
# force bundle to use github https protocol
bundle config github.https true
# avoid installing gems here so we give a chance for child images to install any dependency
Expand Down
5 changes: 0 additions & 5 deletions 20-2.6.10/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,6 @@ RUN set -ex ;\
WORKDIR $HOME
ONBUILD ADD . $HOME
ONBUILD RUN set -ex ;\
# TODO @jfloff : won't be needed when we upgrade to Rails 5
# install bundler packed with Gemfile if we have that information in the Gemfile.lock
# ref: https://bundler.io/blog/2019/01/04/an-update-on-the-bundler-2-release.html
if [ -f Gemfile.lock ]; then GEMFILE_LOCK_BUNDLE_VERSION=$(awk '/BUNDLED WITH/{getline; print}' Gemfile.lock | xargs) ; else GEMFILE_LOCK_BUNDLE_VERSION="" ; fi ;\
gem install --no-document bundler $(if [ -z "$GEMFILE_LOCK_BUNDLE_VERSION" ]; then echo "" ; else echo "-v $GEMFILE_LOCK_BUNDLE_VERSION" ; fi) ;\
# force bundle to use github https protocol
bundle config github.https true
# avoid installing gems here so we give a chance for child images to install any dependency
Expand Down
5 changes: 0 additions & 5 deletions 20-2.6.6/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,6 @@ RUN set -ex ;\
WORKDIR $HOME
ONBUILD ADD . $HOME
ONBUILD RUN set -ex ;\
# TODO @jfloff : won't be needed when we upgrade to Rails 5
# install bundler packed with Gemfile if we have that information in the Gemfile.lock
# ref: https://bundler.io/blog/2019/01/04/an-update-on-the-bundler-2-release.html
if [ -f Gemfile.lock ]; then GEMFILE_LOCK_BUNDLE_VERSION=$(awk '/BUNDLED WITH/{getline; print}' Gemfile.lock | xargs) ; else GEMFILE_LOCK_BUNDLE_VERSION="" ; fi ;\
gem install --no-document bundler $(if [ -z "$GEMFILE_LOCK_BUNDLE_VERSION" ]; then echo "" ; else echo "-v $GEMFILE_LOCK_BUNDLE_VERSION" ; fi) ;\
# force bundle to use github https protocol
bundle config github.https true
# avoid installing gems here so we give a chance for child images to install any dependency
Expand Down
5 changes: 0 additions & 5 deletions 20-2.6.8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,6 @@ RUN set -ex ;\
WORKDIR $HOME
ONBUILD ADD . $HOME
ONBUILD RUN set -ex ;\
# TODO @jfloff : won't be needed when we upgrade to Rails 5
# install bundler packed with Gemfile if we have that information in the Gemfile.lock
# ref: https://bundler.io/blog/2019/01/04/an-update-on-the-bundler-2-release.html
if [ -f Gemfile.lock ]; then GEMFILE_LOCK_BUNDLE_VERSION=$(awk '/BUNDLED WITH/{getline; print}' Gemfile.lock | xargs) ; else GEMFILE_LOCK_BUNDLE_VERSION="" ; fi ;\
gem install --no-document bundler $(if [ -z "$GEMFILE_LOCK_BUNDLE_VERSION" ]; then echo "" ; else echo "-v $GEMFILE_LOCK_BUNDLE_VERSION" ; fi) ;\
# force bundle to use github https protocol
bundle config github.https true
# avoid installing gems here so we give a chance for child images to install any dependency
Expand Down
5 changes: 0 additions & 5 deletions 20-2.6.9/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,6 @@ RUN set -ex ;\
WORKDIR $HOME
ONBUILD ADD . $HOME
ONBUILD RUN set -ex ;\
# TODO @jfloff : won't be needed when we upgrade to Rails 5
# install bundler packed with Gemfile if we have that information in the Gemfile.lock
# ref: https://bundler.io/blog/2019/01/04/an-update-on-the-bundler-2-release.html
if [ -f Gemfile.lock ]; then GEMFILE_LOCK_BUNDLE_VERSION=$(awk '/BUNDLED WITH/{getline; print}' Gemfile.lock | xargs) ; else GEMFILE_LOCK_BUNDLE_VERSION="" ; fi ;\
gem install --no-document bundler $(if [ -z "$GEMFILE_LOCK_BUNDLE_VERSION" ]; then echo "" ; else echo "-v $GEMFILE_LOCK_BUNDLE_VERSION" ; fi) ;\
# force bundle to use github https protocol
bundle config github.https true
# avoid installing gems here so we give a chance for child images to install any dependency
Expand Down
5 changes: 0 additions & 5 deletions 20-2.7.4/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,6 @@ RUN set -ex ;\
WORKDIR $HOME
ONBUILD ADD . $HOME
ONBUILD RUN set -ex ;\
# TODO @jfloff : won't be needed when we upgrade to Rails 5
# install bundler packed with Gemfile if we have that information in the Gemfile.lock
# ref: https://bundler.io/blog/2019/01/04/an-update-on-the-bundler-2-release.html
if [ -f Gemfile.lock ]; then GEMFILE_LOCK_BUNDLE_VERSION=$(awk '/BUNDLED WITH/{getline; print}' Gemfile.lock | xargs) ; else GEMFILE_LOCK_BUNDLE_VERSION="" ; fi ;\
gem install --no-document bundler $(if [ -z "$GEMFILE_LOCK_BUNDLE_VERSION" ]; then echo "" ; else echo "-v $GEMFILE_LOCK_BUNDLE_VERSION" ; fi) ;\
# force bundle to use github https protocol
bundle config github.https true
# avoid installing gems here so we give a chance for child images to install any dependency
Expand Down
5 changes: 0 additions & 5 deletions 20-2.7.5/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,6 @@ RUN set -ex ;\
WORKDIR $HOME
ONBUILD ADD . $HOME
ONBUILD RUN set -ex ;\
# TODO @jfloff : won't be needed when we upgrade to Rails 5
# install bundler packed with Gemfile if we have that information in the Gemfile.lock
# ref: https://bundler.io/blog/2019/01/04/an-update-on-the-bundler-2-release.html
if [ -f Gemfile.lock ]; then GEMFILE_LOCK_BUNDLE_VERSION=$(awk '/BUNDLED WITH/{getline; print}' Gemfile.lock | xargs) ; else GEMFILE_LOCK_BUNDLE_VERSION="" ; fi ;\
gem install --no-document bundler $(if [ -z "$GEMFILE_LOCK_BUNDLE_VERSION" ]; then echo "" ; else echo "-v $GEMFILE_LOCK_BUNDLE_VERSION" ; fi) ;\
# force bundle to use github https protocol
bundle config github.https true
# avoid installing gems here so we give a chance for child images to install any dependency
Expand Down
5 changes: 0 additions & 5 deletions 20-2.7.6/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,6 @@ RUN set -ex ;\
WORKDIR $HOME
ONBUILD ADD . $HOME
ONBUILD RUN set -ex ;\
# TODO @jfloff : won't be needed when we upgrade to Rails 5
# install bundler packed with Gemfile if we have that information in the Gemfile.lock
# ref: https://bundler.io/blog/2019/01/04/an-update-on-the-bundler-2-release.html
if [ -f Gemfile.lock ]; then GEMFILE_LOCK_BUNDLE_VERSION=$(awk '/BUNDLED WITH/{getline; print}' Gemfile.lock | xargs) ; else GEMFILE_LOCK_BUNDLE_VERSION="" ; fi ;\
gem install --no-document bundler $(if [ -z "$GEMFILE_LOCK_BUNDLE_VERSION" ]; then echo "" ; else echo "-v $GEMFILE_LOCK_BUNDLE_VERSION" ; fi) ;\
# force bundle to use github https protocol
bundle config github.https true
# avoid installing gems here so we give a chance for child images to install any dependency
Expand Down
5 changes: 0 additions & 5 deletions 20-2.7.7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,6 @@ RUN set -ex ;\
WORKDIR $HOME
ONBUILD ADD Gemfile* $HOME
ONBUILD RUN set -ex ;\
# TODO @jfloff : won't be needed when we upgrade to Rails 5
# install bundler packed with Gemfile if we have that information in the Gemfile.lock
# ref: https://bundler.io/blog/2019/01/04/an-update-on-the-bundler-2-release.html
if [ -f Gemfile.lock ]; then GEMFILE_LOCK_BUNDLE_VERSION=$(awk '/BUNDLED WITH/{getline; print}' Gemfile.lock | xargs) ; else GEMFILE_LOCK_BUNDLE_VERSION="" ; fi ;\
gem install --no-document bundler $(if [ -z "$GEMFILE_LOCK_BUNDLE_VERSION" ]; then echo "" ; else echo "-v $GEMFILE_LOCK_BUNDLE_VERSION" ; fi) ;\
# force bundle to use github https protocol
bundle config github.https true
# avoid installing gems here so we give a chance for child images to install any dependency
Expand Down
5 changes: 0 additions & 5 deletions 20-2.7.8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,6 @@ RUN set -ex ;\
WORKDIR $HOME
ONBUILD ADD Gemfile* $HOME
ONBUILD RUN set -ex ;\
# TODO @jfloff : won't be needed when we upgrade to Rails 5
# install bundler packed with Gemfile if we have that information in the Gemfile.lock
# ref: https://bundler.io/blog/2019/01/04/an-update-on-the-bundler-2-release.html
if [ -f Gemfile.lock ]; then GEMFILE_LOCK_BUNDLE_VERSION=$(awk '/BUNDLED WITH/{getline; print}' Gemfile.lock | xargs) ; else GEMFILE_LOCK_BUNDLE_VERSION="" ; fi ;\
gem install --no-document bundler $(if [ -z "$GEMFILE_LOCK_BUNDLE_VERSION" ]; then echo "" ; else echo "-v $GEMFILE_LOCK_BUNDLE_VERSION" ; fi) ;\
# force bundle to use github https protocol
bundle config github.https true
# avoid installing gems here so we give a chance for child images to install any dependency
Expand Down
5 changes: 0 additions & 5 deletions 20-3.0.2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,6 @@ RUN set -ex ;\
WORKDIR $HOME
ONBUILD ADD . $HOME
ONBUILD RUN set -ex ;\
# TODO @jfloff : won't be needed when we upgrade to Rails 5
# install bundler packed with Gemfile if we have that information in the Gemfile.lock
# ref: https://bundler.io/blog/2019/01/04/an-update-on-the-bundler-2-release.html
if [ -f Gemfile.lock ]; then GEMFILE_LOCK_BUNDLE_VERSION=$(awk '/BUNDLED WITH/{getline; print}' Gemfile.lock | xargs) ; else GEMFILE_LOCK_BUNDLE_VERSION="" ; fi ;\
gem install --no-document bundler $(if [ -z "$GEMFILE_LOCK_BUNDLE_VERSION" ]; then echo "" ; else echo "-v $GEMFILE_LOCK_BUNDLE_VERSION" ; fi) ;\
# force bundle to use github https protocol
bundle config github.https true
# avoid installing gems here so we give a chance for child images to install any dependency
Expand Down
5 changes: 0 additions & 5 deletions 20-3.0.3/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,6 @@ RUN set -ex ;\
WORKDIR $HOME
ONBUILD ADD . $HOME
ONBUILD RUN set -ex ;\
# TODO @jfloff : won't be needed when we upgrade to Rails 5
# install bundler packed with Gemfile if we have that information in the Gemfile.lock
# ref: https://bundler.io/blog/2019/01/04/an-update-on-the-bundler-2-release.html
if [ -f Gemfile.lock ]; then GEMFILE_LOCK_BUNDLE_VERSION=$(awk '/BUNDLED WITH/{getline; print}' Gemfile.lock | xargs) ; else GEMFILE_LOCK_BUNDLE_VERSION="" ; fi ;\
gem install --no-document bundler $(if [ -z "$GEMFILE_LOCK_BUNDLE_VERSION" ]; then echo "" ; else echo "-v $GEMFILE_LOCK_BUNDLE_VERSION" ; fi) ;\
# force bundle to use github https protocol
bundle config github.https true
# avoid installing gems here so we give a chance for child images to install any dependency
Expand Down
5 changes: 0 additions & 5 deletions 20-3.1.2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,6 @@ RUN set -ex ;\
WORKDIR $HOME
ONBUILD ADD . $HOME
ONBUILD RUN set -ex ;\
# TODO @jfloff : won't be needed when we upgrade to Rails 5
# install bundler packed with Gemfile if we have that information in the Gemfile.lock
# ref: https://bundler.io/blog/2019/01/04/an-update-on-the-bundler-2-release.html
if [ -f Gemfile.lock ]; then GEMFILE_LOCK_BUNDLE_VERSION=$(awk '/BUNDLED WITH/{getline; print}' Gemfile.lock | xargs) ; else GEMFILE_LOCK_BUNDLE_VERSION="" ; fi ;\
gem install --no-document bundler $(if [ -z "$GEMFILE_LOCK_BUNDLE_VERSION" ]; then echo "" ; else echo "-v $GEMFILE_LOCK_BUNDLE_VERSION" ; fi) ;\
# force bundle to use github https protocol
bundle config github.https true
# avoid installing gems here so we give a chance for child images to install any dependency
Expand Down
5 changes: 0 additions & 5 deletions 22-3.1.2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,6 @@ RUN set -ex ;\
WORKDIR $HOME
ONBUILD ADD . $HOME
ONBUILD RUN set -ex ;\
# TODO @jfloff : won't be needed when we upgrade to Rails 5
# install bundler packed with Gemfile if we have that information in the Gemfile.lock
# ref: https://bundler.io/blog/2019/01/04/an-update-on-the-bundler-2-release.html
if [ -f Gemfile.lock ]; then GEMFILE_LOCK_BUNDLE_VERSION=$(awk '/BUNDLED WITH/{getline; print}' Gemfile.lock | xargs) ; else GEMFILE_LOCK_BUNDLE_VERSION="" ; fi ;\
gem install --no-document bundler $(if [ -z "$GEMFILE_LOCK_BUNDLE_VERSION" ]; then echo "" ; else echo "-v $GEMFILE_LOCK_BUNDLE_VERSION" ; fi) ;\
# force bundle to use github https protocol
bundle config github.https true
# avoid installing gems here so we give a chance for child images to install any dependency
Expand Down
5 changes: 0 additions & 5 deletions 22-3.1.4/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,6 @@ RUN set -ex ;\
WORKDIR $HOME
ONBUILD ADD . $HOME
ONBUILD RUN set -ex ;\
# TODO @jfloff : won't be needed when we upgrade to Rails 5
# install bundler packed with Gemfile if we have that information in the Gemfile.lock
# ref: https://bundler.io/blog/2019/01/04/an-update-on-the-bundler-2-release.html
if [ -f Gemfile.lock ]; then GEMFILE_LOCK_BUNDLE_VERSION=$(awk '/BUNDLED WITH/{getline; print}' Gemfile.lock | xargs) ; else GEMFILE_LOCK_BUNDLE_VERSION="" ; fi ;\
gem install --no-document bundler $(if [ -z "$GEMFILE_LOCK_BUNDLE_VERSION" ]; then echo "" ; else echo "-v $GEMFILE_LOCK_BUNDLE_VERSION" ; fi) ;\
# force bundle to use github https protocol
bundle config github.https true
# avoid installing gems here so we give a chance for child images to install any dependency
Expand Down
5 changes: 0 additions & 5 deletions Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,6 @@ RUN set -ex ;\
WORKDIR $HOME
ONBUILD ADD . $HOME
ONBUILD RUN set -ex ;\
# TODO @jfloff : won't be needed when we upgrade to Rails 5
# install bundler packed with Gemfile if we have that information in the Gemfile.lock
# ref: https://bundler.io/blog/2019/01/04/an-update-on-the-bundler-2-release.html
if [ -f Gemfile.lock ]; then GEMFILE_LOCK_BUNDLE_VERSION=$(awk '/BUNDLED WITH/{getline; print}' Gemfile.lock | xargs) ; else GEMFILE_LOCK_BUNDLE_VERSION="" ; fi ;\
gem install --no-document bundler $(if [ -z "$GEMFILE_LOCK_BUNDLE_VERSION" ]; then echo "" ; else echo "-v $GEMFILE_LOCK_BUNDLE_VERSION" ; fi) ;\
# force bundle to use github https protocol
bundle config github.https true
# avoid installing gems here so we give a chance for child images to install any dependency
Expand Down

0 comments on commit 09a4b16

Please sign in to comment.