summaryrefslogtreecommitdiffstats
path: root/ansible_collections/cyberark/conjur/tests/unit/Dockerfile
blob: 66e584669293503443ac084892b90f528674a4b3 (plain)
1
2
3
4
5
6
7
8
ARG PYTHON_VERSION
FROM python:${PYTHON_VERSION}

ARG ANSIBLE_VERSION
RUN pip install https://github.com/ansible/ansible/archive/${ANSIBLE_VERSION}.tar.gz --disable-pip-version-check

COPY tests/unit/requirements.txt /tmp/requirements.txt
RUN pip install -r /tmp/requirements.txt