From ec7c4b2b657cd443c2980d4afcc623c6f37ee268 Mon Sep 17 00:00:00 2001 From: shockrah Date: Sun, 29 Sep 2024 21:36:27 -0700 Subject: [PATCH] Fixing remaining packaging issues --- ansible/Dockerfile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/ansible/Dockerfile b/ansible/Dockerfile index 28f308b..fc47502 100644 --- a/ansible/Dockerfile +++ b/ansible/Dockerfile @@ -3,14 +3,10 @@ FROM alpine:latest -MAINTAINER shockrah :^) - RUN apk --update add sudo python3 openssl ca-certificates openssh-client rsync && \ apk --update add --virtual build-dependencies \ - python3-dev libffi-dev openssl-dev build-base && \ - python3 -m ensurepip && \ - pip3 install --upgrade pip cffi && \ - pip3 install ansible ansible-lint && \ + python3-dev libffi-dev openssl-dev build-base \ + ansible py3-ansible-lint && \ apk del build-dependencies && \ rm -rf /var/cache/apk/* && \ mkdir -p /etc/ansible && \