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 2018/09/24 12:45:57 UTC

[incubator-openwhisk] branch master updated: script runner now has nodejs (#4036)

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


The following commit(s) were added to refs/heads/master by this push:
     new fb8ed2a  script runner now has nodejs (#4036)
fb8ed2a is described below

commit fb8ed2a77357e63c21e3fbf0bff32a63bb21a14c
Author: Carlos Santana <cs...@apache.org>
AuthorDate: Mon Sep 24 08:45:49 2018 -0400

    script runner now has nodejs (#4036)
---
 tools/scriptRunner/Dockerfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/scriptRunner/Dockerfile b/tools/scriptRunner/Dockerfile
index b7801d1..432e510 100644
--- a/tools/scriptRunner/Dockerfile
+++ b/tools/scriptRunner/Dockerfile
@@ -1,7 +1,7 @@
 # Licensed to the Apache Software Foundation (ASF) under one or more contributor
 # license agreements; and to You under the Apache License, Version 2.0.
 
-from alpine
+FROM node:alpine
 
 RUN apk --no-cache add \
   bash \
@@ -17,6 +17,6 @@ RUN wget -q https://github.com/apache/incubator-openwhisk-cli/releases/download/
     rm OpenWhisk_CLI-$WHISK_CLI_VERSION-linux-amd64.tgz
 
 COPY init.sh /init.sh
-RUN chmod +X /init.sh
+RUN chmod +x /init.sh
 
 CMD ["/init.sh"]