2022-03-25 03:03:12 +01:00
|
|
|
FROM python:3.10.4-slim
|
2021-12-15 00:21:52 +01:00
|
|
|
|
2021-12-15 16:34:59 +01:00
|
|
|
RUN apt-get update && apt-get install -y git \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
2021-12-15 00:21:52 +01:00
|
|
|
# renovate: datasource=pypi depName=ansible
|
2022-04-06 03:03:24 +02:00
|
|
|
ENV ANSIBLE_VERSION=5.6.0
|
2022-01-29 17:48:41 +01:00
|
|
|
RUN pip3 install --no-cache-dir ansible==${ANSIBLE_VERSION} dnspython
|
2021-12-15 00:21:52 +01:00
|
|
|
|
|
|
|
COPY entrypoint /bin/entrypoint
|
|
|
|
|
|
|
|
ENTRYPOINT [ "/bin/entrypoint" ]
|