woodpecker-ansible-runner/Dockerfile

12 lines
337 B
Docker
Raw Normal View History

FROM python:3.11.4-slim
2021-12-15 00:21:52 +01:00
2022-12-29 12:14:09 +01:00
RUN apt-get update && apt-get install -y git toilet \
2021-12-15 16:34:59 +01:00
&& rm -rf /var/lib/apt/lists/*
2021-12-15 00:21:52 +01:00
# renovate: datasource=pypi depName=ansible
ENV ANSIBLE_VERSION=8.1.0
2023-05-29 19:18:36 +02:00
RUN pip3 install --no-cache-dir ansible==${ANSIBLE_VERSION} dnspython passlib netaddr
2021-12-15 00:21:52 +01:00
COPY entrypoint /bin/entrypoint
ENTRYPOINT [ "/bin/entrypoint" ]