You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by st...@apache.org on 2020/08/02 08:33:42 UTC

[openwhisk] branch master updated: Fix ow-utils image build failed issue (#4937)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 4579967  Fix ow-utils image build failed issue (#4937)
4579967 is described below

commit 4579967c3d8654a7ae9a32a5648eb7d2bc30cac4
Author: ningyougang <41...@qq.com>
AuthorDate: Sun Aug 2 16:33:26 2020 +0800

    Fix ow-utils image build failed issue (#4937)
    
    Co-authored-by: ning.yougang <ni...@navercorp.com>
---
 tools/ow-utils/Dockerfile | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/tools/ow-utils/Dockerfile b/tools/ow-utils/Dockerfile
index 105c644..392d044 100644
--- a/tools/ow-utils/Dockerfile
+++ b/tools/ow-utils/Dockerfile
@@ -32,12 +32,17 @@ RUN apt-get update && apt-get install -y \
   python-pip \
   wget \
   zip \
+  locales \
 && rm -rf /var/lib/apt/lists/*
 
+RUN locale-gen en_US.UTF-8
+ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
+
 # Python packages
 RUN pip install --upgrade pip
 RUN pip install --upgrade setuptools
-RUN pip install ansible==2.5.2 && \
+RUN pip install cryptography==2.5 && \
+    pip install ansible==2.5.2 && \
     pip install jinja2==2.9.6 && \
     pip install docker