Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,16 @@
# We include the SHA to ensure image immutability
FROM azul/zulu-openjdk-alpine:25.0.1-jre-headless@sha256:5499f0c1453d7e7111501b28b21f173b1ec88a48719b7d5b060b0e6461c315b3
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the latest version as of now. This pull request is meant to be reverted

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I’d prefer to wait until Zulu updates the image.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There hasn't been any update in the last 2 weeks, possibly due to holidays. So, we may be vulnerable for a while

I'd think we should prioritize security as long as all our integration tests pass

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There hasn't been any update in the last 2 weeks, possibly due to holidays. So, we may be vulnerable for a while

I'd think we should prioritize security as long as all our integration tests pass


RUN apk add --no-cache \
RUN apk add --update --no-cache \
# snappy codec
gcompat \
# configuring timezones
tzdata
tzdata \
# Temporary fixes for CVE-2024-58251 and CVE-2025-46394
busybox=1.36.1-r31 \
busybox-binsh=1.36.1-r31 \
ssl_client=1.36.1-r31

RUN addgroup -S kafkaui && adduser -S kafkaui -G kafkaui

# creating folder for dynamic config usage (certificates uploads, etc)
Expand Down
Loading