This repository has been archived on 2023-02-09. You can view files and clone it, but cannot push or open issues or pull requests.
drone-ansible-runner/Dockerfile

12 lines
314 B
Docker
Raw Permalink Normal View History

FROM python:3.11.0-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
ENV ANSIBLE_VERSION=7.0.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" ]