diff --git a/ci/build_image.sh b/ci/build_image.sh index 01e4d83..359ad9d 100755 --- a/ci/build_image.sh +++ b/ci/build_image.sh @@ -194,7 +194,7 @@ fi revision=$(git rev-parse HEAD) shortref=$(git rev-parse --short "$revision") -repo_url=$(git remote get-url upstream) +repo_url=$(git remote get-url origin) if [ -z "$repo_url" ] then die 7 "No remote found" diff --git a/oci/Containerfile b/oci/Containerfile index 213955d..e9cd07e 100644 --- a/oci/Containerfile +++ b/oci/Containerfile @@ -22,6 +22,7 @@ RUN mkdir -p ./vendor/cache && \ bundle exec rake build && \ mv pkg/*.gem ./vendor/cache/ && \ cp oci/Gemfile . && \ + bundle config set --local disable_checksum_validation true && \ bundle install --jobs $JOBS # Remove folders not needed in resulting image