Skip to content

Commit c4731ca

Browse files
committed
switch base image version
1 parent 96f8763 commit c4731ca

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -480,8 +480,8 @@
480480
<KAFKA_SOURCE_BOOTSTRAP_HOST>kafka</KAFKA_SOURCE_BOOTSTRAP_HOST>
481481
<!-- TODO(ville): Obtain these from the current user! -->
482482
<!-- Ref: https://github.com/rynr/user-id-maven-plugin -->
483-
<MAD_UID>1000</MAD_UID>
484-
<MAD_GID>1000</MAD_GID>
483+
<MAD_UID>1001</MAD_UID>
484+
<MAD_GID>1001</MAD_GID>
485485
</env>
486486
<volumes>
487487
<bind>

src/main/docker/kafka/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# Original: https://github.com/spotify/docker-kafka
1616

1717
# Kafka and Zookeeper
18-
FROM openjdk:17-slim-bullseye
18+
FROM eclipse-temurin:17-jre
1919

2020
ENV SCALA_VERSION 2.13
2121
ENV KAFKA_VERSION 2.7.1

src/main/docker/mad/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM openjdk:17-slim-bullseye
15+
FROM eclipse-temurin:17-jre
1616

1717
MAINTAINER arpnetworking
1818

@@ -21,8 +21,8 @@ WORKDIR /opt/mad
2121

2222
# Configuration
2323
ENV MAD_USER="mad"
24-
ENV MAD_UID=1000
25-
ENV MAD_GID=1000
24+
ENV MAD_UID=1001
25+
ENV MAD_GID=1001
2626
ENV JVM_XMS="64m"
2727
ENV JVM_XMX="1024m"
2828
ENV LOGBACK_CONFIG="-Dlogback.configurationFile=/opt/mad/config/logback-console.xml"
@@ -31,7 +31,7 @@ ENV JAVA_OPTS=""
3131

3232
# Build
3333
RUN apt update && \
34-
DEBIAN_FRONTEND=noninteractive apt install -y gosu openssl && \
34+
DEBIAN_FRONTEND=noninteractive apt install -y gosu && \
3535
rm -rf /var/lib/apt/lists/* && \
3636
apt-get clean && \
3737
mkdir -p /opt/mad/lib/ext && \

0 commit comments

Comments
 (0)