diff options
author | Jan Tattermusch <jtattermusch@google.com> | 2016-02-11 17:03:49 -0800 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@google.com> | 2016-02-11 17:03:49 -0800 |
commit | c1e86744c677fffc35a924e4ff6906a0f98e712a (patch) | |
tree | 7f7c46744efe138db52f078b5117001c96e76fdf /tools/dockerfile | |
parent | a63300581dcadf2b6f5dd4e6dad2fa00d4337f89 (diff) |
fix fedora21 distribtests
Diffstat (limited to 'tools/dockerfile')
-rw-r--r-- | tools/dockerfile/distribtest/python_fedora21_x64/Dockerfile | 5 | ||||
-rw-r--r-- | tools/dockerfile/distribtest/ruby_fedora21_x64/Dockerfile | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/tools/dockerfile/distribtest/python_fedora21_x64/Dockerfile b/tools/dockerfile/distribtest/python_fedora21_x64/Dockerfile index b44fcff7e3..1eb4c1e775 100644 --- a/tools/dockerfile/distribtest/python_fedora21_x64/Dockerfile +++ b/tools/dockerfile/distribtest/python_fedora21_x64/Dockerfile @@ -29,4 +29,9 @@ FROM fedora:21 +# Make yum work properly under docker when using overlay storage driver. +# https://bugzilla.redhat.com/show_bug.cgi?id=1213602#c9 +# https://github.com/docker/docker/issues/10180 +RUN yum install -y yum-plugin-ovl + RUN yum clean all && yum update -y && yum install -y python python-pip diff --git a/tools/dockerfile/distribtest/ruby_fedora21_x64/Dockerfile b/tools/dockerfile/distribtest/ruby_fedora21_x64/Dockerfile index 598dac5a11..b567c5b109 100644 --- a/tools/dockerfile/distribtest/ruby_fedora21_x64/Dockerfile +++ b/tools/dockerfile/distribtest/ruby_fedora21_x64/Dockerfile @@ -29,6 +29,11 @@ FROM fedora:21 +# Make yum work properly under docker when using overlay storage driver. +# https://bugzilla.redhat.com/show_bug.cgi?id=1213602#c9 +# https://github.com/docker/docker/issues/10180 +RUN yum install -y yum-plugin-ovl + RUN yum clean all && yum update -y && yum install -y ruby RUN gem install bundler |