[Docker] do not cache pip
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing

This commit is contained in:
otthorn 2021-02-18 00:14:12 +01:00
parent 3eb9536c7b
commit a35488efdd

View file

@ -2,6 +2,6 @@ FROM python:3.9-alpine
LABEL description="Aurore's docker image for ansible-lint" LABEL description="Aurore's docker image for ansible-lint"
RUN apk add --no-cache gcc musl-dev python3-dev libffi-dev openssl-dev cargo RUN apk add --no-cache gcc musl-dev python3-dev libffi-dev openssl-dev cargo
RUN pip install "yamllint>=1.26.0,<2.0" RUN pip install --no-cache-dir "yamllint>=1.26.0,<2.0"
RUN pip install "ansible-lint==5.0.0" RUN pip install --no-cache-dir "ansible-lint==5.0.0"
RUN pip install "ansible>=2.10,<2.11" RUN pip install --no-cache-dir "ansible>=2.10,<2.11"