Skip to content

Commit 499878b

Browse files
committed
Add Dockerfile to execute tests
1 parent 1c9135a commit 499878b

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM ruby:2.3.0
2+
3+
COPY ./squcumber-postgres.gemspec squcumber-postgres.gemspec
4+
COPY ./Gemfile Gemfile
5+
COPY ./Rakefile Rakefile
6+
RUN bundle install
7+
8+
COPY ./spec spec
9+
COPY ./lib lib
10+
11+
CMD ["bundle", "exec", "rspec"]

0 commit comments

Comments
 (0)