Merge pull request #2686 from TracksApp/fix_ci

Fix using most recent versions of the Ruby images in the CI
This commit is contained in:
Jyri-Petteri Paloposki 2021-11-25 01:23:30 +02:00 committed by GitHub
commit c0bd8183be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
FROM ruby:2.7.1
FROM ruby:2.7
# throw errors if Gemfile has been modified since Gemfile.lock
RUN bundle config --global frozen 1

View file

@ -1,4 +1,4 @@
FROM ruby:2.5.7
FROM ruby:2.5
# throw errors if Gemfile has been modified since Gemfile.lock
RUN bundle config --global frozen 1

View file

@ -1,4 +1,4 @@
FROM ruby:2.6.5
FROM ruby:2.6
# throw errors if Gemfile has been modified since Gemfile.lock
RUN bundle config --global frozen 1

View file

@ -4,7 +4,7 @@ appdir=$(cd $(dirname "$0")/.. && pwd)
[ -f /etc/app-env ] || exec "$appdir/script/docker-environment" $0 $@
for i in {1..60}; do
curl -sf db:3306 >/dev/null && exit
curl -sf telnet://db:3306 >/dev/null && exit
sleep 1
done