We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c8df9b commit fd33c2dCopy full SHA for fd33c2d
1 file changed
core/actionProxy/Dockerfile
@@ -19,12 +19,13 @@
19
FROM python:3.6-alpine
20
21
# Upgrade and install basic Python dependencies.
22
+# Use quick greenlet==1.1.3.post0 as update version is not compatible with action Proxy
23
RUN apk upgrade --update \
24
&& apk add --no-cache bash perl jq zip git curl wget openssl ca-certificates sed openssh-client \
25
&& update-ca-certificates \
26
&& apk add --no-cache --virtual .build-deps bzip2-dev g++ libc-dev \
27
&& pip install --upgrade pip setuptools six \
- && pip install --no-cache-dir gevent==1.3.6 flask==1.0.2 \
28
+ && pip install --no-cache-dir gevent==1.3.6 flask==1.0.2 greenlet==1.1.3.post0\
29
&& apk del .build-deps
30
31
ENV FLASK_PROXY_PORT 8080
0 commit comments