This is an automated email from the ASF dual-hosted git repository. rabbah pushed a commit to branch fix-compile-script in repository https://gitbox.apache.org/repos/asf/openwhisk-runtime-python.git
commit 80ee2b928756ac5157f700b1cd178f70d982b7b1 Author: Rodric Rabbah <[email protected]> AuthorDate: Fri May 22 18:11:56 2020 -0400 Add signalfx library. --- core/python3ActionLoop/Dockerfile | 3 +++ core/python3ActionLoop/signalfx-lambda-python/.gitkeep | 0 core/python3AiActionLoop/Dockerfile | 3 +++ core/python3AiActionLoop/signalfx-lambda-python/.gitkeep | 0 4 files changed, 6 insertions(+) diff --git a/core/python3ActionLoop/Dockerfile b/core/python3ActionLoop/Dockerfile index ca750aa..0cfc522 100644 --- a/core/python3ActionLoop/Dockerfile +++ b/core/python3ActionLoop/Dockerfile @@ -36,6 +36,9 @@ RUN curl -sL \ FROM python:3.7-buster ARG GO_PROXY_BUILD_FROM=source +# Copy nimbella version of the sfx library +COPY signalfx-lambda-python /opt/signalfx_lambda + # Install common modules for python COPY requirements.txt requirements.txt RUN pip install --no-cache-dir -r requirements.txt diff --git a/core/python3ActionLoop/signalfx-lambda-python/.gitkeep b/core/python3ActionLoop/signalfx-lambda-python/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/core/python3AiActionLoop/Dockerfile b/core/python3AiActionLoop/Dockerfile index b78556a..7f2ec73 100644 --- a/core/python3AiActionLoop/Dockerfile +++ b/core/python3AiActionLoop/Dockerfile @@ -65,6 +65,9 @@ RUN curl -L https://downloads.rclone.org/rclone-current-linux-amd64.deb -o rclon && dpkg -i rclone.deb \ && rm rclone.deb +# Copy nimbella version of the sfx library +COPY signalfx-lambda-python /opt/signalfx_lambda + COPY requirements.txt requirements.txt RUN pip3 install --upgrade pip six &&\ pip3 install --no-cache-dir -r requirements.txt &&\ diff --git a/core/python3AiActionLoop/signalfx-lambda-python/.gitkeep b/core/python3AiActionLoop/signalfx-lambda-python/.gitkeep new file mode 100644 index 0000000..e69de29
