Skip to content

Commit

Permalink
Fix the Dockerfile to use the latest Ruby 2.4 and ignore the Gem lock…
Browse files Browse the repository at this point in the history
… file (#472)
  • Loading branch information
childish-sambino authored Sep 19, 2019
1 parent b0b6d7e commit 02f6e2d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Gemfile.lock
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
!.rubocop_todo.yml
!.rubocop.yml
!.travis.yml
!.dockerignore
pkg/*
doc/*
Gemfile.lock
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
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

0 comments on commit 02f6e2d

Please sign in to comment.