You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by lb...@apache.org on 2019/01/25 08:26:57 UTC

[camel-k] branch master updated: chore(s2i): update base image to 3.0-java8

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

lburgazzoli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k.git


The following commit(s) were added to refs/heads/master by this push:
     new f56f04a  chore(s2i): update base image to 3.0-java8
f56f04a is described below

commit f56f04a5984060a3fd95bafbada09a4fd5242cdb
Author: lburgazzoli <lb...@gmail.com>
AuthorDate: Fri Jan 25 01:12:08 2019 +0100

    chore(s2i): update base image to 3.0-java8
---
 build/Dockerfile                | 2 +-
 cmd/util/publisher/publisher.go | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/build/Dockerfile b/build/Dockerfile
index 39c3b26..ff0bf9d 100644
--- a/build/Dockerfile
+++ b/build/Dockerfile
@@ -1,4 +1,4 @@
-FROM fabric8/s2i-java:2.3
+FROM fabric8/s2i-java:3.0-java8
 
 ADD build/_maven_output /tmp/artifacts/m2
 
diff --git a/cmd/util/publisher/publisher.go b/cmd/util/publisher/publisher.go
index 0ce0462..9d21e68 100644
--- a/cmd/util/publisher/publisher.go
+++ b/cmd/util/publisher/publisher.go
@@ -163,7 +163,7 @@ func (options *PublisherOptions) build(component string, camelVersion string) er
 	archiveDir, archiveName := filepath.Split(ctx.Archive)
 	// nolint: gosec
 	dockerfile := `
-		FROM fabric8/s2i-java:2.3
+		FROM fabric8/s2i-java:3.0-java8
 		ADD ` + archiveName + ` /deployments/
 	`