woodpecker-ansible-runner/Dockerfile

9 lines
221 B
Docker
Raw Normal View History

2021-12-15 16:07:34 +01:00
FROM python:3.10.1-slim
2021-12-15 00:21:52 +01:00
# renovate: datasource=pypi depName=ansible
ENV ANSIBLE_VERSION=5.0.1
RUN pip3 install --no-cache-dir ansible==${ANSIBLE_VERSION}
COPY entrypoint /bin/entrypoint
ENTRYPOINT [ "/bin/entrypoint" ]