Skip to content

Commit 8b6360a

Browse files
authored
Merge pull request #138 from RADAR-base/fix-dockerfile
Uninstall java 11 and install java 17 in the base docker images
2 parents 17d0d45 + 0430499 commit 8b6360a

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

kafka-connect-fitbit-source/Dockerfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,13 @@ RUN gradle jar
3434

3535
FROM confluentinc/cp-kafka-connect-base:7.5.0
3636

37+
USER root
38+
39+
RUN yum remove -y zulu11-ca-jdk-headless && yum remove -y zulu11-ca-jre-headless
40+
RUN yum install -y zulu17-ca-jdk-headless && yum install -y zulu17-ca-jre-headless
41+
42+
USER appuser
43+
3744
MAINTAINER Joris Borgdorff <[email protected]>
3845

3946
LABEL description="Kafka REST API Source connector"

kafka-connect-oura-source/Dockerfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,13 @@ RUN gradle jar
3434

3535
FROM confluentinc/cp-kafka-connect-base:7.5.0
3636

37+
USER root
38+
39+
RUN yum remove -y zulu11-ca-jdk-headless && yum remove -y zulu11-ca-jre-headless
40+
RUN yum install -y zulu17-ca-jdk-headless && yum install -y zulu17-ca-jre-headless
41+
42+
USER appuser
43+
3744
MAINTAINER Pauline Conde <[email protected]>
3845

3946
LABEL description="Kafka Oura REST API Source connector"

0 commit comments

Comments
 (0)