This is an automated email from the ASF dual-hosted git repository.
mhenke 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 ef1aadd Module changes now require c++ for build. - Changes in the
modules now require the c++ package for a successful build. The gcc package is
not enough anymore.
new a42d5dc Merge pull request #85 from falkzoll/updateRuntime
ef1aadd is described below
commit ef1aaddd50dde54012972fa12937aeea9af46181
Author: Falk Zoll <[email protected]>
AuthorDate: Tue Feb 23 10:39:40 2021 +0100
Module changes now require c++ for build.
- Changes in the modules now require the c++ package for a successful
build. The gcc package is not enough anymore.
---
core/actionProxy/Dockerfile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/core/actionProxy/Dockerfile b/core/actionProxy/Dockerfile
index 173b050..125edcb 100644
--- a/core/actionProxy/Dockerfile
+++ b/core/actionProxy/Dockerfile
@@ -22,7 +22,7 @@ FROM python:3.6-alpine
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 gcc libc-dev \
+ && 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 \
&& apk del .build-deps