Skip to content

Commit

Permalink
add basic Dockerfile for testing for different version of Ruby
Browse files Browse the repository at this point in the history
  • Loading branch information
samnung committed Nov 13, 2017
1 parent 130d45f commit bc81b0f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM ruby:2.3.3

ENV LC_ALL=C.UTF-8
RUN apt update -y && apt install zip nodejs -y
RUN wget -nv -O- https://raw.githubusercontent.com/kovidgoyal/calibre/master/setup/linux-installer.py | \
python -c "import sys; main=lambda:sys.stderr.write('Download failed\n'); exec(sys.stdin.read()); main()"
RUN gem install bundler

0 comments on commit bc81b0f

Please sign in to comment.