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 2022/12/07 22:09:55 UTC

[openwhisk-runtime-docker] branch master updated: Use fixed version ov greenlet so travis build runs again (#95)

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/openwhisk-runtime-docker.git


The following commit(s) were added to refs/heads/master by this push:
     new fd33c2d  Use fixed version ov greenlet so travis build runs again (#95)
fd33c2d is described below

commit fd33c2deb98b3eb72aa9f9915070c0d32c2ad14c
Author: Luke-Roy-IBM <83...@users.noreply.github.com>
AuthorDate: Wed Dec 7 23:09:50 2022 +0100

    Use fixed version ov greenlet so travis build runs again (#95)
---
 core/actionProxy/Dockerfile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/core/actionProxy/Dockerfile b/core/actionProxy/Dockerfile
index 125edcb..ef194fa 100644
--- a/core/actionProxy/Dockerfile
+++ b/core/actionProxy/Dockerfile
@@ -19,12 +19,13 @@
 FROM python:3.6-alpine
 
 # Upgrade and install basic Python dependencies.
+# Use quick greenlet==1.1.3.post0 as  update version is not compatible with action Proxy
 RUN apk upgrade --update \
   && apk add --no-cache bash perl jq zip git curl wget openssl ca-certificates sed openssh-client \
   && update-ca-certificates \
   && apk add --no-cache --virtual .build-deps bzip2-dev g++ libc-dev \
   && pip install --upgrade pip setuptools six \
-  && pip install --no-cache-dir gevent==1.3.6 flask==1.0.2 \
+  && pip install --no-cache-dir gevent==1.3.6 flask==1.0.2 greenlet==1.1.3.post0\
   && apk del .build-deps
 
 ENV FLASK_PROXY_PORT 8080