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
sebclem 769c764a6a
Some checks failed
continuous-integration/drone/push Build is failing
Mise à jour de 'Dockerfile'
2021-12-15 16:07:34 +01:00

11 lines
270 B
Docker

FROM python:3.10.1-slim
# renovate: datasource=pypi depName=ansible
ENV ANSIBLE_VERSION=5.0.1
RUN pip3 install --no-cache-dir ansible==${ANSIBLE_VERSION}
RUN apk del gcc musl-dev python3-dev libffi-dev
COPY entrypoint /bin/entrypoint
ENTRYPOINT [ "/bin/entrypoint" ]