You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by dg...@apache.org on 2019/05/21 16:37:11 UTC

[incubator-openwhisk] branch master updated: Invoker agent failed to pull docker images if using docker registry name (#4488)

This is an automated email from the ASF dual-hosted git repository.

dgrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk.git


The following commit(s) were added to refs/heads/master by this push:
     new fd5d06b  Invoker agent failed to pull docker images if using docker registry name (#4488)
fd5d06b is described below

commit fd5d06bc6f4a0e0a76620165db52759bb13028ad
Author: Neeraj Mangal <ne...@users.noreply.github.com>
AuthorDate: Tue May 21 22:06:58 2019 +0530

    Invoker agent failed to pull docker images if using docker registry name (#4488)
    
    Add `pip install docker` to Dockerfile for ow-utils to fix problem pulling docker images
---
 tools/ow-utils/Dockerfile | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/tools/ow-utils/Dockerfile b/tools/ow-utils/Dockerfile
index bf49481..190250c 100644
--- a/tools/ow-utils/Dockerfile
+++ b/tools/ow-utils/Dockerfile
@@ -21,8 +21,9 @@ RUN apt-get update && apt-get install -y \
 # Python packages
 RUN pip install --upgrade pip
 RUN pip install --upgrade setuptools
-RUN pip install ansible==2.5.2
-RUN pip install jinja2==2.9.6
+RUN pip install ansible==2.5.2 && \
+    pip install jinja2==2.9.6 && \
+    pip install docker
 
 # Install docker client
 RUN wget --no-verbose https://get.docker.com/builds/Linux/x86_64/docker-${DOCKER_VERSION}.tgz && \