diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2019-09-10 09:31:59 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2019-09-10 09:31:59 +0200 |
commit | 9ac4f9fb23cf4fd973b5339421df406f2393ef8b (patch) | |
tree | a8536d3ae1557e981a15fa1fb011fcb1bbd54bab /Dockerfile | |
parent | c379cffb3301c3f1f7f973bac7009522e941b66b (diff) | |
download | s2i-jekyll-9ac4f9fb23cf4fd973b5339421df406f2393ef8b.tar.gz |
add gcc
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -14,7 +14,8 @@ LABEL io.k8s.description="Platform for building static jekyll sites" \ USER root RUN yum install -y centos-release-scl && \ - yum install -y rh-ruby${RH_RUBY_VERSION} \ + yum install -y make gcc binutils glibc-devel \ + rh-ruby${RH_RUBY_VERSION} \ rh-ruby${RH_RUBY_VERSION}-ruby-devel \ rh-ruby${RH_RUBY_VERSION}-rubygem-bundler && \ yum clean all -y |