diff options
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;\ |