You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ze...@apache.org on 2020/06/17 08:31:20 UTC

[incubator-streampipes-extensions] branch dev updated: Change java version in docker file

This is an automated email from the ASF dual-hosted git repository.

zehnder pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes-extensions.git


The following commit(s) were added to refs/heads/dev by this push:
     new 44f3c21  Change java version in docker file
44f3c21 is described below

commit 44f3c2131b03f4a26691965cb891c7924de668ec
Author: Philipp Zehnder <ze...@fzi.de>
AuthorDate: Wed Jun 17 10:30:53 2020 +0200

    Change java version in docker file
---
 streampipes-processors-enricher-jvm/Dockerfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/streampipes-processors-enricher-jvm/Dockerfile b/streampipes-processors-enricher-jvm/Dockerfile
index d9cfa68..cc414fe 100644
--- a/streampipes-processors-enricher-jvm/Dockerfile
+++ b/streampipes-processors-enricher-jvm/Dockerfile
@@ -13,7 +13,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-ARG BASE_IMAGE=adoptopenjdk/openjdk8-openj9:alpine-slim
+ARG BASE_IMAGE=adoptopenjdk/openjdk9-openj9:alpine-slim
 FROM $BASE_IMAGE
 
 ENV CONSUL_LOCATION consul
@@ -22,4 +22,4 @@ EXPOSE 8090
 
 COPY target/streampipes-processors-enricher-jvm.jar  /streampipes-processing-element-container.jar
 
-ENTRYPOINT ["java", "--add-modules", "jdk.scripting.nashorn", "-jar", "/streampipes-processing-element-container.jar"]
+ENTRYPOINT ["java", "-jar", "/streampipes-processing-element-container.jar"]