You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by wi...@apache.org on 2020/11/11 13:20:49 UTC

[incubator-streampipes-extensions] branch dev updated: [hotfix] use adoptopenjdk/openjdk8-openj9:alpine base image for all Dockerfiles

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

wiener 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 a6f058f  [hotfix] use adoptopenjdk/openjdk8-openj9:alpine base image for all Dockerfiles
a6f058f is described below

commit a6f058f1d299b9826d5269e3c661eae7b466a285
Author: Patrick Wiener <wi...@fzi.de>
AuthorDate: Wed Nov 11 14:20:18 2020 +0100

    [hotfix] use adoptopenjdk/openjdk8-openj9:alpine base image for all Dockerfiles
---
 docker-compose.yml                                        | 10 +++++-----
 streampipes-connect-adapters/Dockerfile                   |  2 +-
 streampipes-pipeline-elements-all-flink/Dockerfile        |  2 +-
 streampipes-processors-aggregation-flink/Dockerfile       |  2 +-
 streampipes-processors-enricher-flink/Dockerfile          |  2 +-
 streampipes-processors-filters-jvm/Dockerfile             |  2 +-
 streampipes-processors-filters-siddhi/Dockerfile          |  2 +-
 streampipes-processors-geo-flink/Dockerfile               |  2 +-
 streampipes-processors-geo-jvm/Dockerfile                 |  2 +-
 streampipes-processors-image-processing-jvm/Dockerfile    |  2 +-
 streampipes-processors-pattern-detection-flink/Dockerfile |  2 +-
 streampipes-processors-statistics-flink/Dockerfile        |  2 +-
 streampipes-processors-text-mining-jvm/Dockerfile         |  2 +-
 streampipes-processors-transformation-flink/Dockerfile    |  2 +-
 streampipes-processors-transformation-jvm/Dockerfile      |  2 +-
 streampipes-sinks-brokers-jvm/Dockerfile                  |  2 +-
 streampipes-sinks-databases-flink/Dockerfile              |  2 +-
 streampipes-sinks-databases-jvm/Dockerfile                |  2 +-
 streampipes-sinks-internal-jvm/Dockerfile                 |  2 +-
 streampipes-sinks-notifications-jvm/Dockerfile            |  2 +-
 streampipes-sources-vehicle-simulator/Dockerfile          |  2 +-
 streampipes-sources-watertank-simulator/Dockerfile        |  2 +-
 22 files changed, 26 insertions(+), 26 deletions(-)

diff --git a/docker-compose.yml b/docker-compose.yml
index 56cd07a..b3b24c4 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -39,7 +39,7 @@ services:
       context: ./streampipes-connect-adapters
       dockerfile: Dockerfile
       args:
-        BASE_IMAGE: adoptopenjdk/openjdk8-openj9:alpine-slim
+        BASE_IMAGE: adoptopenjdk/openjdk8-openj9:alpine
     image: incubator-streampipes_connect-worker-main:release-validation
     environment:
       - SP_CONNECT_CONTAINER_HOST=connect-master
@@ -53,7 +53,7 @@ services:
       context: ./streampipes-pipeline-elements-all-jvm
       dockerfile: Dockerfile
       args:
-        BASE_IMAGE: adoptopenjdk/openjdk8-openj9:alpine-slim
+        BASE_IMAGE: adoptopenjdk/openjdk8-openj9:alpine
     image: incubator-streampipes_pipeline-elements-all-jvm:release-validation
     volumes:
     - files:/spImages
@@ -66,7 +66,7 @@ services:
       context: ./streampipes-pipeline-elements-all-flink
       dockerfile: Dockerfile
       args:
-        BASE_IMAGE: adoptopenjdk/openjdk8-openj9:alpine-slim
+        BASE_IMAGE: adoptopenjdk/openjdk8-openj9:alpine
     image: incubator-streampipes_pipeline-elements-all-flink:release-validation
     logging: *default-logging
     networks:
@@ -77,7 +77,7 @@ services:
       context: ./streampipes-sources-watertank-simulator
       dockerfile: Dockerfile
       args:
-        BASE_IMAGE: adoptopenjdk/openjdk8-openj9:alpine-slim
+        BASE_IMAGE: adoptopenjdk/openjdk8-openj9:alpine
     image: incubator-streampipes_sources-watertank-simulator:release-validation
     logging: *default-logging
     networks:
@@ -88,7 +88,7 @@ services:
       context: ./streampipes-sources-vehicle-simulator
       dockerfile: Dockerfile
       args:
-        BASE_IMAGE: adoptopenjdk/openjdk8-openj9:alpine-slim
+        BASE_IMAGE: adoptopenjdk/openjdk8-openj9:alpine
     image: incubator-streampipes_sources-vehicle-simulator:release-validation
     logging: *default-logging
     networks:
diff --git a/streampipes-connect-adapters/Dockerfile b/streampipes-connect-adapters/Dockerfile
index f6ef3a7..aadab4d 100644
--- a/streampipes-connect-adapters/Dockerfile
+++ b/streampipes-connect-adapters/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/openjdk8-openj9:alpine
 FROM $BASE_IMAGE
 
 ENV CONSUL_LOCATION consul
diff --git a/streampipes-pipeline-elements-all-flink/Dockerfile b/streampipes-pipeline-elements-all-flink/Dockerfile
index 5e96faf..2d0be1a 100644
--- a/streampipes-pipeline-elements-all-flink/Dockerfile
+++ b/streampipes-pipeline-elements-all-flink/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/openjdk8-openj9:alpine
 FROM $BASE_IMAGE
 
 ENV CONSUL_LOCATION consul
diff --git a/streampipes-processors-aggregation-flink/Dockerfile b/streampipes-processors-aggregation-flink/Dockerfile
index 73a1649..695eae0 100644
--- a/streampipes-processors-aggregation-flink/Dockerfile
+++ b/streampipes-processors-aggregation-flink/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/openjdk8-openj9:alpine
 FROM $BASE_IMAGE
 
 ENV CONSUL_LOCATION consul
diff --git a/streampipes-processors-enricher-flink/Dockerfile b/streampipes-processors-enricher-flink/Dockerfile
index ab60e6a..b0c8a48 100644
--- a/streampipes-processors-enricher-flink/Dockerfile
+++ b/streampipes-processors-enricher-flink/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/openjdk8-openj9:alpine
 FROM $BASE_IMAGE
 
 ENV CONSUL_LOCATION consul
diff --git a/streampipes-processors-filters-jvm/Dockerfile b/streampipes-processors-filters-jvm/Dockerfile
index c0dee8c..f2b8798 100644
--- a/streampipes-processors-filters-jvm/Dockerfile
+++ b/streampipes-processors-filters-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/openjdk8-openj9:alpine
 FROM $BASE_IMAGE
 
 ENV CONSUL_LOCATION consul
diff --git a/streampipes-processors-filters-siddhi/Dockerfile b/streampipes-processors-filters-siddhi/Dockerfile
index 58c0beb..806bb28 100644
--- a/streampipes-processors-filters-siddhi/Dockerfile
+++ b/streampipes-processors-filters-siddhi/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/openjdk8-openj9:alpine
 FROM $BASE_IMAGE
 
 ENV CONSUL_LOCATION consul
diff --git a/streampipes-processors-geo-flink/Dockerfile b/streampipes-processors-geo-flink/Dockerfile
index 629d869..ab39bee 100644
--- a/streampipes-processors-geo-flink/Dockerfile
+++ b/streampipes-processors-geo-flink/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/openjdk8-openj9:alpine
 FROM $BASE_IMAGE
 
 ENV CONSUL_LOCATION consul
diff --git a/streampipes-processors-geo-jvm/Dockerfile b/streampipes-processors-geo-jvm/Dockerfile
index 13a7fb6..e66211b 100644
--- a/streampipes-processors-geo-jvm/Dockerfile
+++ b/streampipes-processors-geo-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/openjdk8-openj9:alpine
 FROM $BASE_IMAGE
 
 ENV CONSUL_LOCATION consul
diff --git a/streampipes-processors-image-processing-jvm/Dockerfile b/streampipes-processors-image-processing-jvm/Dockerfile
index 63c07b9..e64e6d1 100644
--- a/streampipes-processors-image-processing-jvm/Dockerfile
+++ b/streampipes-processors-image-processing-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/openjdk8-openj9:alpine
 FROM $BASE_IMAGE
 
 ENV CONSUL_LOCATION consul
diff --git a/streampipes-processors-pattern-detection-flink/Dockerfile b/streampipes-processors-pattern-detection-flink/Dockerfile
index 091cb08..600ef8b 100644
--- a/streampipes-processors-pattern-detection-flink/Dockerfile
+++ b/streampipes-processors-pattern-detection-flink/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/openjdk8-openj9:alpine
 FROM $BASE_IMAGE
 
 ENV CONSUL_LOCATION consul
diff --git a/streampipes-processors-statistics-flink/Dockerfile b/streampipes-processors-statistics-flink/Dockerfile
index 3d9c141..f2fcb8e 100644
--- a/streampipes-processors-statistics-flink/Dockerfile
+++ b/streampipes-processors-statistics-flink/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/openjdk8-openj9:alpine
 FROM $BASE_IMAGE
 
 ENV CONSUL_LOCATION consul
diff --git a/streampipes-processors-text-mining-jvm/Dockerfile b/streampipes-processors-text-mining-jvm/Dockerfile
index 9ef5e7b..4a0eed6 100644
--- a/streampipes-processors-text-mining-jvm/Dockerfile
+++ b/streampipes-processors-text-mining-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/openjdk8-openj9:alpine
 FROM $BASE_IMAGE
 
 ENV CONSUL_LOCATION consul
diff --git a/streampipes-processors-transformation-flink/Dockerfile b/streampipes-processors-transformation-flink/Dockerfile
index 463cce7..cbe76f3 100644
--- a/streampipes-processors-transformation-flink/Dockerfile
+++ b/streampipes-processors-transformation-flink/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/openjdk8-openj9:alpine
 FROM $BASE_IMAGE
 
 ENV CONSUL_LOCATION consul
diff --git a/streampipes-processors-transformation-jvm/Dockerfile b/streampipes-processors-transformation-jvm/Dockerfile
index 1b146ac..55c3d34 100644
--- a/streampipes-processors-transformation-jvm/Dockerfile
+++ b/streampipes-processors-transformation-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/openjdk8-openj9:alpine
 FROM $BASE_IMAGE
 
 ENV CONSUL_LOCATION consul
diff --git a/streampipes-sinks-brokers-jvm/Dockerfile b/streampipes-sinks-brokers-jvm/Dockerfile
index 4ce7bc7..630bd7b 100644
--- a/streampipes-sinks-brokers-jvm/Dockerfile
+++ b/streampipes-sinks-brokers-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/openjdk8-openj9:alpine
 FROM $BASE_IMAGE
 
 ENV CONSUL_LOCATION consul
diff --git a/streampipes-sinks-databases-flink/Dockerfile b/streampipes-sinks-databases-flink/Dockerfile
index 22084f2..2402500 100644
--- a/streampipes-sinks-databases-flink/Dockerfile
+++ b/streampipes-sinks-databases-flink/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/openjdk8-openj9:alpine
 FROM $BASE_IMAGE
 
 ENV CONSUL_LOCATION consul
diff --git a/streampipes-sinks-databases-jvm/Dockerfile b/streampipes-sinks-databases-jvm/Dockerfile
index 2cae787..2ab40ee 100644
--- a/streampipes-sinks-databases-jvm/Dockerfile
+++ b/streampipes-sinks-databases-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/openjdk8-openj9:alpine
 FROM $BASE_IMAGE
 
 ENV CONSUL_LOCATION consul
diff --git a/streampipes-sinks-internal-jvm/Dockerfile b/streampipes-sinks-internal-jvm/Dockerfile
index 25c734d..ccfeb73 100644
--- a/streampipes-sinks-internal-jvm/Dockerfile
+++ b/streampipes-sinks-internal-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/openjdk8-openj9:alpine
 FROM $BASE_IMAGE
 
 ENV CONSUL_LOCATION consul
diff --git a/streampipes-sinks-notifications-jvm/Dockerfile b/streampipes-sinks-notifications-jvm/Dockerfile
index 9e0a739..0b594df 100644
--- a/streampipes-sinks-notifications-jvm/Dockerfile
+++ b/streampipes-sinks-notifications-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/openjdk8-openj9:alpine
 FROM $BASE_IMAGE
 
 ENV CONSUL_LOCATION consul
diff --git a/streampipes-sources-vehicle-simulator/Dockerfile b/streampipes-sources-vehicle-simulator/Dockerfile
index 8b5aa2d..924db56 100644
--- a/streampipes-sources-vehicle-simulator/Dockerfile
+++ b/streampipes-sources-vehicle-simulator/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/openjdk8-openj9:alpine
 FROM $BASE_IMAGE
 
 ENV CONSUL_LOCATION consul
diff --git a/streampipes-sources-watertank-simulator/Dockerfile b/streampipes-sources-watertank-simulator/Dockerfile
index ed06983..48b6778 100644
--- a/streampipes-sources-watertank-simulator/Dockerfile
+++ b/streampipes-sources-watertank-simulator/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/openjdk8-openj9:alpine
 FROM $BASE_IMAGE
 
 ENV CONSUL_LOCATION consul