diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2022-12-06 11:35:27 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2022-12-06 11:35:27 +0100 |
commit | f8ad064b3714f6cc93054450a997b6456392f8d3 (patch) | |
tree | 86a4f0be2ef0b846b6afa5e31f5277708c3ec8a4 | |
parent | cb3a047ec98d2f7d0d68fb992fda28e86b01f8c9 (diff) | |
download | s2i-jekyll-f8ad064b3714f6cc93054450a997b6456392f8d3.tar.gz |
-rw-r--r-- | Dockerfile.ubi8 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Dockerfile.ubi8 b/Dockerfile.ubi8 index 6f9acd3..7ef50dd 100644 --- a/Dockerfile.ubi8 +++ b/Dockerfile.ubi8 @@ -22,11 +22,13 @@ COPY ./etc/proxy.sh /etc/profile.d/ RUN source /etc/profile.d/proxy.sh; \ set -x; \ + df .; \ dnf module list; \ dnf update -y --skip-broken --nobest && \ dnf install -y httpd && \ dnf clean all && \ - gem install jekyll --version "= $JEKYLL_VERSION" + gem install jekyll --version "= $JEKYLL_VERSION"; \ + df . RUN mkdir -p /opt/app-root;\ chmod 755 /opt /opt/app-root;\ |