|
@@ -192,13 +192,13 @@ RUN set -x \
|
|
|
|
|
|
# Get the "docker-py" source so we can run their integration tests
|
|
# Get the "docker-py" source so we can run their integration tests
|
|
ENV DOCKER_PY_COMMIT 4a08d04aef0595322e1b5ac7c52f28a931da85a5
|
|
ENV DOCKER_PY_COMMIT 4a08d04aef0595322e1b5ac7c52f28a931da85a5
|
|
|
|
+# To run integration tests docker-pycreds is required.
|
|
|
|
+# Before running the integration tests conftest.py is
|
|
|
|
+# loaded which results in loads auth.py that
|
|
|
|
+# imports the docker-pycreds module.
|
|
RUN git clone https://github.com/docker/docker-py.git /docker-py \
|
|
RUN git clone https://github.com/docker/docker-py.git /docker-py \
|
|
&& cd /docker-py \
|
|
&& cd /docker-py \
|
|
&& git checkout -q $DOCKER_PY_COMMIT \
|
|
&& git checkout -q $DOCKER_PY_COMMIT \
|
|
- # To run integration tests docker-pycreds is required.
|
|
|
|
- # Before running the integration tests conftest.py is
|
|
|
|
- # loaded which results in loads auth.py that
|
|
|
|
- # imports the docker-pycreds module.
|
|
|
|
&& pip install docker-pycreds==0.2.1 \
|
|
&& pip install docker-pycreds==0.2.1 \
|
|
&& pip install -r test-requirements.txt
|
|
&& pip install -r test-requirements.txt
|
|
|
|
|