* Remove cache during docker build

* Add some docs for Prow
This commit is contained in:
Fabian von Feilitzsch
2020-08-25 14:40:13 -04:00
committed by GitHub
parent 7c4c25ca35
commit 41f01c361a
3 changed files with 25 additions and 4 deletions

View File

@@ -14,11 +14,13 @@ RUN yum install -y \
python3-devel \
python3-pip \
python3-setuptools \
&& pip3 install --upgrade setuptools pip \
&& pip3 install \
&& pip3 install --no-cache-dir --upgrade setuptools pip \
&& pip3 install --no-cache-dir \
openshift \
ansible \
molecule
molecule \
&& yum clean all \
&& rm -rf $HOME/.cache
COPY . /opt/ansible