From 0703ff62e730d41e460b62287a2188c33312e625 Mon Sep 17 00:00:00 2001 From: Matt Conway Date: Wed, 24 Feb 2021 14:57:26 -0500 Subject: [PATCH] fix deployment --- Dockerfile | 4 +++- Gemfile.lock | 22 +++++++++++----------- 2 files changed, 14 insertions(+), 12 deletions(-) diff --git a/Dockerfile b/Dockerfile index 476c096..9920e13 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,7 +35,9 @@ RUN apk --update upgrade && \ rm -rf /var/cache/apk/* COPY . $APP_DIR/ -RUN bundle install --deployment --jobs=4 --without development test +RUN bundle config set deployment 'true' && \ + bundle config set without 'development test' && \ + bundle install --jobs=4 FROM base AS release diff --git a/Gemfile.lock b/Gemfile.lock index 7061a7d..eb7e098 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - kubetruth (0.2.0) + kubetruth (0.2.1) activesupport clamp gem_logger @@ -12,7 +12,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (6.1.1) + activesupport (6.1.3) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -23,7 +23,7 @@ GEM byebug (11.1.3) clamp (1.3.2) coderay (1.1.3) - concurrent-ruby (1.1.7) + concurrent-ruby (1.1.8) coveralls (0.8.23) json (>= 1.8, < 3) simplecov (~> 0.16.1) @@ -35,13 +35,13 @@ GEM docile (1.3.2) domain_name (0.5.20190701) unf (>= 0.0.5, < 1.0.0) - ffi (1.13.1) + ffi (1.14.2) ffi-compiler (1.0.1) ffi (>= 1.0.0) rake gem_logger (0.3.0) activesupport - graphql (1.11.6) + graphql (1.12.5) graphql-client (0.16.0) activesupport (>= 3.0) graphql (~> 1.8) @@ -55,12 +55,12 @@ GEM http-cookie (1.0.3) domain_name (~> 0.5) http-form_data (2.3.0) - http-parser (1.2.2) - ffi-compiler - i18n (1.8.7) + http-parser (1.2.3) + ffi-compiler (>= 1.0, < 2.0) + i18n (1.8.9) concurrent-ruby (~> 1.0) json (2.3.1) - jsonpath (1.0.6) + jsonpath (1.1.0) multi_json kubeclient (4.9.1) http (>= 3.0, < 5.0) @@ -74,8 +74,8 @@ GEM method_source (1.0.0) mime-types (3.3.1) mime-types-data (~> 3.2015) - mime-types-data (3.2020.1104) - minitest (5.14.3) + mime-types-data (3.2021.0212) + minitest (5.14.4) multi_json (1.15.0) netrc (0.11.0) pry (0.13.1)