From 4841d2b0b6192791035b3994f2626cf63d533986 Mon Sep 17 00:00:00 2001 From: Thomas Boerger Date: Tue, 23 Jan 2024 08:20:49 +0100 Subject: [PATCH] fix: install required ansible-core package --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 98f083f..3fceb86 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM alpine:3.19 # renovate: datasource=pypi depName=ansible-doctor ENV ANSIBLE_DOCTOR_VERSION=4.0.1 -RUN apk add --no-cache bash python3 python3-dev py3-pip && \ +RUN apk add --no-cache bash python3 python3-dev py3-pip ansible-core && \ pip3 install --break-system-packages -U ansible-doctor==${ANSIBLE_DOCTOR_VERSION} && \ rm -rf /root/.cache