Browse Source

[ruby/grape] Remove deprecated --path option from bundle command (#8855)

Petrik de Heus 1 year ago
parent
commit
44246856ac

+ 1 - 1
frameworks/Ruby/grape/grape-unicorn.dockerfile

@@ -8,7 +8,7 @@ ADD ./ /grape
 
 
 WORKDIR /grape
 WORKDIR /grape
 
 
-RUN bundle install --jobs=4 --gemfile=/grape/Gemfile --path=/grape/grape/bundle
+RUN bundle install --jobs=4 --gemfile=/grape/Gemfile
 
 
 EXPOSE 8080
 EXPOSE 8080
 
 

+ 1 - 1
frameworks/Ruby/grape/grape.dockerfile

@@ -6,7 +6,7 @@ ADD ./ /grape
 
 
 WORKDIR /grape
 WORKDIR /grape
 
 
-RUN bundle install --jobs=4 --gemfile=/grape/Gemfile --path=/grape/grape/bundle
+RUN bundle install --jobs=4 --gemfile=/grape/Gemfile
 
 
 EXPOSE 8080
 EXPOSE 8080