Skip to content

Commit 02f6e2d

Browse files
author
childish-sambino
authored
Fix the Dockerfile to use the latest Ruby 2.4 and ignore the Gem lock file (#472)
1 parent b0b6d7e commit 02f6e2d

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Gemfile.lock

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
!.rubocop_todo.yml
44
!.rubocop.yml
55
!.travis.yml
6+
!.dockerignore
67
pkg/*
78
doc/*
89
Gemfile.lock

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM ruby:2.4.0
1+
FROM ruby:2.4
22

33
RUN mkdir /twilio
44
WORKDIR /twilio
55

66
COPY . .
77

8-
RUN bundle install
8+
RUN bundle install
99
RUN bundle exec rake install

0 commit comments

Comments
 (0)