-
Notifications
You must be signed in to change notification settings - Fork 467
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix the Dockerfile to use the latest Ruby 2.4 and ignore the Gem lock…
… file (#472)
- Loading branch information
childish-sambino
authored
Sep 19, 2019
1 parent
b0b6d7e
commit 02f6e2d
Showing
3 changed files
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Gemfile.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
!.rubocop_todo.yml | ||
!.rubocop.yml | ||
!.travis.yml | ||
!.dockerignore | ||
pkg/* | ||
doc/* | ||
Gemfile.lock | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
FROM ruby:2.4.0 | ||
FROM ruby:2.4 | ||
|
||
RUN mkdir /twilio | ||
WORKDIR /twilio | ||
|
||
COPY . . | ||
|
||
RUN bundle install | ||
RUN bundle install | ||
RUN bundle exec rake install |