From 58157448c516d499dd6660afb04dbc16e2f04238 Mon Sep 17 00:00:00 2001 From: kjeld Schouten-Lebbing Date: Thu, 22 Apr 2021 13:55:07 +0200 Subject: [PATCH] Ansible: Don't purge before install of taskfile.dev --- .containers/apps/ansible/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.containers/apps/ansible/Dockerfile b/.containers/apps/ansible/Dockerfile index 6581ce918ba..45def6119c4 100644 --- a/.containers/apps/ansible/Dockerfile +++ b/.containers/apps/ansible/Dockerfile @@ -40,11 +40,11 @@ RUN \ && pip3 install --no-cache-dir \ ansible==${VERSION} \ ansible-lint \ - && apk del \ - .build-deps \ && echo "==> install taskfile.dev..." \ && sh -c "$(curl --location https://taskfile.dev/install.sh)" \ && echo "==> Cleaning up..." \ + && apk del \ + .build-deps \ && rm -rf /var/cache/apk/* \ && echo "==> Adding hosts for convenience..." \ && mkdir -p /etc/ansible /ansible \