浏览代码

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

Petrik de Heus 1 年之前
父节点
当前提交
44246856ac
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      frameworks/Ruby/grape/grape-unicorn.dockerfile
  2. 1 1
      frameworks/Ruby/grape/grape.dockerfile

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

@@ -8,7 +8,7 @@ ADD ./ /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
 

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

@@ -6,7 +6,7 @@ ADD ./ /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