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 9eed945 commit ca26303Copy full SHA for ca26303
docker/app/ruby/Dockerfile
@@ -16,7 +16,10 @@ COPY --chown=ishocon:ishocon webapp/ /home/ishocon/webapp
16
WORKDIR /home/ishocon
17
18
# ライブラリのインストール
19
-RUN ["/bin/bash", "-lc", "cd /home/ishocon/webapp/ruby && gem install bundler && bundle install"]
+RUN bash -c "source ~/.bashrc" && \
20
+ cd /home/ishocon/webapp/ruby && \
21
+ gem install bundler -v "1.16.1" && \
22
+ bundle install
23
24
COPY run.sh /home/ishocon/run.sh
25
0 commit comments