1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00
pry--pry/Dockerfile
Andrew Vos 81455ef211 Add scripts to rake test on all rubies
Run ./multi_test.sh to test all rubies that are configured in
Dockerfile.
2014-07-20 00:17:57 +01:00

15 lines
398 B
Docker

FROM ubuntu:latest
RUN apt-get update -y
RUN apt-get install -y wget make git
RUN wget --no-check-certificate -O ruby-install-0.4.3.tar.gz https://github.com/postmodern/ruby-install/archive/v0.4.3.tar.gz
RUN tar -xzvf ruby-install-0.4.3.tar.gz
RUN cd ruby-install-0.4.3 && make install
RUN ruby-install ruby 1.9.3
RUN ruby-install ruby 2.1.1
RUN ruby-install ruby 2.1.2
ADD . /pry
WORKDIR /pry