Skip to content

Commit 99b8612

Browse files
authored
Add /var/tmp/ for cleanup (openshift#2711)
1 parent 4720adb commit 99b8612

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tools/openshift-ci/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ RUN set -x && \
2020
yum module reset ruby && \
2121
yum module -y enable ruby:2.7 && \
2222
yum module -y install ruby:2.7 && \
23-
yum clean all -y && rm -rf /var/cache/yum /tmp/* /verification-tests/Gemfile.lock
23+
yum clean all -y && \
24+
rm -rf /var/cache/yum /var/tmp/* /tmp/*
2425

2526
ADD . /verification-tests/
2627

@@ -30,4 +31,5 @@ RUN set -x && \
3031
chmod -R g=u /verification-tests && \
3132
/verification-tests/tools/install_os_deps.sh && \
3233
/verification-tests/tools/hack_bundle.rb && \
33-
yum clean all -y && rm -rf /var/cache/yum /tmp/* /verification-tests/Gemfile.lock
34+
yum clean all -y && \
35+
rm -rf /var/cache/yum /var/tmp/* /tmp/* /verification-tests/Gemfile.lock

0 commit comments

Comments
 (0)