From 5fe85c430c999f303f168e36ad9e7e94355089e8 Mon Sep 17 00:00:00 2001 From: adcg Date: Thu, 17 Mar 2022 22:34:16 +0100 Subject: [PATCH] feat(dockerfile): Install pip --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index cc456f0..228a866 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,6 @@ FROM alpine:3.15 ARG ANSIBLE_VERSION -RUN apk update && apk add git ansible=$ANSIBLE_VERSION openssh-client +RUN apk update && apk add git ansible=$ANSIBLE_VERSION openssh-client py3-pip -RUN apk add py3-dnspython +RUN pip install dnspython