mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
81455ef211
Run ./multi_test.sh to test all rubies that are configured in Dockerfile.
15 lines
398 B
Docker
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
|