Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade Kafka image to 3.8.0 #87

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
4 changes: 2 additions & 2 deletions docker/kafka/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM alpine:latest AS kafka_dist

ARG scala_version=2.13
ARG kafka_version=3.7.0
ARG kafka_version=3.8.0
ARG kafka_distro_base_url=https://downloads.apache.org/kafka

ENV kafka_distro=kafka_$scala_version-$kafka_version.tgz
Expand All @@ -26,7 +26,7 @@ RUN rm -r kafka_$scala_version-$kafka_version/bin/windows
FROM debian:bullseye-slim

ARG scala_version=2.13
ARG kafka_version=3.7.0
ARG kafka_version=3.8.0


RUN set -eux; \
Expand Down
Loading