Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion kafka/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# The only assumption we make about this FROM is that it has a JRE in path
FROM solsson/kafka-jre@sha256:06dabfc8cacd0687c8f52c52afd650444fb6d4a8e0b85f68557e6e7a5c71667c

ENV KAFKA_VERSION=1.0.1 SCALA_VERSION=2.11
ENV KAFKA_VERSION=1.1.0 SCALA_VERSION=2.11

RUN set -ex; \
export DEBIAN_FRONTEND=noninteractive; \
Expand Down
24 changes: 24 additions & 0 deletions ksql/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# The only assumption we make about this FROM is that it has a JRE in path
FROM solsson/kafka-jre@sha256:06dabfc8cacd0687c8f52c52afd650444fb6d4a8e0b85f68557e6e7a5c71667c

ENV KSQL_VERSION=5.0.0~beta1-1

RUN set -ex; \
export DEBIAN_FRONTEND=noninteractive; \
runDeps=''; \
buildDeps='curl ca-certificates gnupg2 apt-transport-https'; \
apt-get update && apt-get install -y $runDeps $buildDeps --no-install-recommends; \
\
curl -SLs https://packages.confluent.io/deb/5.0/archive.key | apt-key add -; \
echo "deb [arch=amd64] https://packages.confluent.io/deb/5.0 stable main" > /etc/apt/sources.list.d/confluent.list; \
\
apt-get update; \
apt-get -s install confluent-ksql | grep confluent; \
\
apt-get install -y \
confluent-ksql=$KSQL_VERSION \
--no-install-recommends; \
\
apt-get purge -y --auto-remove $buildDeps; \
rm -rf /var/lib/apt/lists/*; \
rm -rf /var/log/dpkg.log /var/log/alternatives.log /var/log/apt