Skip to content

Commit

Permalink
install bundler in dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
jtattermusch committed Feb 11, 2016
1 parent 30665fe commit 5deaaa9
Show file tree
Hide file tree
Showing 15 changed files with 30 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tools/dockerfile/distribtest/ruby_centos6_x64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,5 @@
FROM centos:6

RUN yum install -y ruby

RUN gem install bundler
2 changes: 2 additions & 0 deletions tools/dockerfile/distribtest/ruby_centos7_x64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,5 @@
FROM centos:7

RUN yum install -y ruby

RUN gem install bundler
2 changes: 2 additions & 0 deletions tools/dockerfile/distribtest/ruby_fedora20_x64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,5 @@
FROM fedora:20

RUN yum clean all && yum update -y && yum install -y ruby

RUN gem install bundler
2 changes: 2 additions & 0 deletions tools/dockerfile/distribtest/ruby_fedora21_x64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,5 @@
FROM fedora:21

RUN yum clean all && yum update -y && yum install -y ruby

RUN gem install bundler
2 changes: 2 additions & 0 deletions tools/dockerfile/distribtest/ruby_fedora22_x64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,5 @@
FROM fedora:22

RUN yum clean all && yum update -y && yum install -y ruby

RUN gem install bundler
2 changes: 2 additions & 0 deletions tools/dockerfile/distribtest/ruby_fedora23_x64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,5 @@
FROM fedora:23

RUN yum clean all && yum update -y && yum install -y ruby

RUN gem install bundler
2 changes: 2 additions & 0 deletions tools/dockerfile/distribtest/ruby_jessie_x64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,5 @@
FROM debian:jessie

RUN apt-get update && apt-get install -y ruby-full

RUN gem install bundler
2 changes: 2 additions & 0 deletions tools/dockerfile/distribtest/ruby_jessie_x86/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,5 @@
FROM 32bit/debian:jessie

RUN apt-get update && apt-get install -y ruby-full

RUN gem install bundler
2 changes: 2 additions & 0 deletions tools/dockerfile/distribtest/ruby_opensuse_x64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,5 @@
FROM opensuse:42.1

RUN zypper --non-interactive install ruby

RUN gem install bundler
2 changes: 2 additions & 0 deletions tools/dockerfile/distribtest/ruby_ubuntu1204_x64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,5 @@
FROM ubuntu:12.04

RUN apt-get update -y && apt-get install -y ruby-full

RUN gem install bundler
2 changes: 2 additions & 0 deletions tools/dockerfile/distribtest/ruby_ubuntu1404_x64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,5 @@
FROM ubuntu:14.04

RUN apt-get update -y && apt-get install -y ruby-full

RUN gem install bundler
2 changes: 2 additions & 0 deletions tools/dockerfile/distribtest/ruby_ubuntu1504_x64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,5 @@
FROM ubuntu:15.04

RUN apt-get update -y && apt-get install -y ruby-full

RUN gem install bundler
2 changes: 2 additions & 0 deletions tools/dockerfile/distribtest/ruby_ubuntu1510_x64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,5 @@
FROM ubuntu:15.10

RUN apt-get update -y && apt-get install -y ruby-full

RUN gem install bundler
2 changes: 2 additions & 0 deletions tools/dockerfile/distribtest/ruby_ubuntu1604_x64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,5 @@
FROM ubuntu:16.04

RUN apt-get update -y && apt-get install -y ruby-full

RUN gem install bundler
2 changes: 2 additions & 0 deletions tools/dockerfile/distribtest/ruby_wheezy_x64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,5 @@
FROM debian:wheezy

RUN apt-get update && apt-get install -y ruby-full

RUN gem install bundler

0 comments on commit 5deaaa9

Please sign in to comment.