This is an automated email from the ASF dual-hosted git repository. rabbah pushed a commit to branch php8 in repository https://gitbox.apache.org/repos/asf/openwhisk-runtime-php.git
commit 580c94393dcab72180db59a1f4d347a06d9da4f6 Author: Joshua Auerbach <[email protected]> AuthorDate: Sat Nov 7 08:21:23 2020 -0500 Add nim install to php dockerfile (#1) --- core/php7.3Action/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/php7.3Action/Dockerfile b/core/php7.3Action/Dockerfile index 65ddcc2..f04a158 100644 --- a/core/php7.3Action/Dockerfile +++ b/core/php7.3Action/Dockerfile @@ -81,6 +81,9 @@ RUN mkdir -p /phpAction/composer COPY composer.json /phpAction/composer RUN cd /phpAction/composer && /usr/bin/composer install --no-plugins --no-scripts --prefer-dist --no-dev -o && rm composer.lock +# install nim +RUN curl https://apigcp.nimbella.io/downloads/nim/nim-install-linux.sh | bash + # install proxy binary along with compile and launcher scripts RUN mkdir -p /phpAction/action WORKDIR /phpAction
