diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2020-03-04 18:10:48 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2020-03-04 18:10:48 +0100 |
commit | ba8f76a46597c0e8de00c58c657c887641280c18 (patch) | |
tree | c92d4f8673defc2708a9e2baee2c97b68ea2b64e /Dockerfile.ubi8 | |
parent | c196eedabc73e7245b4baf05e7fdf35ac72879be (diff) | |
download | s2i-jekyll-ba8f76a46597c0e8de00c58c657c887641280c18.tar.gz |
dnf fixup
Diffstat (limited to 'Dockerfile.ubi8')
-rw-r--r-- | Dockerfile.ubi8 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Dockerfile.ubi8 b/Dockerfile.ubi8 index ba74fc8..3f0cef7 100644 --- a/Dockerfile.ubi8 +++ b/Dockerfile.ubi8 @@ -21,8 +21,9 @@ COPY ./etc/jekyll-documentroot.conf /etc/httpd/conf.d/ COPY ./etc/proxy.sh /etc/profile.d/ RUN source /etc/profile.d/proxy.sh; \ - dnf upate -y;\ - dnf install -y httpd;\ + dnf update -y && \ + dnf install -y httpd && \ + dnf clean all && \ gem install jekyll --version "= $JEKYLL_VERSION" RUN mkdir -p /opt/app-root;\ |