We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edaa039 commit b0bd481Copy full SHA for b0bd481
.dockerignore
@@ -12,3 +12,4 @@ storage/
12
test/
13
tmp/
14
vendor/
15
+docker/*.Dockerfile
docker/rails.Dockerfile
@@ -28,7 +28,10 @@ RUN gem install nokogiri -v 1.14.2 && \
28
COPY Gemfile Gemfile.lock ./
29
RUN bundle config set deployment 'true' && \
30
bundle config set without 'development test' && \
31
- bundle install
+ bundle install && \
32
+ grpc_path="$(bundle show --paths grpc)/src/ruby/ext/grpc" && \
33
+ make -C "${grpc_path}" clean && \
34
+ rm -rf "${grpc_path}/libs" "${grpc_path}/objs"
35
36
# Only package.json and yarn.lock changes require a new yarn install
37
COPY package.json yarn.lock ./
0 commit comments