Skip to content
Open
Changes from 1 commit
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
Prev Previous commit
Use KSQL 5.0 instead because the REST API is "closer to the future API"
  • Loading branch information
solsson committed May 19, 2018
commit c15554ec18ae5dea16d501cd919a66e47b0628c6
6 changes: 3 additions & 3 deletions ksql/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# 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=4.1.1-1
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/4.1/archive.key | apt-key add -; \
echo "deb [arch=amd64] https://packages.confluent.io/deb/4.1 stable main" > /etc/apt/sources.list.d/confluent.list; \
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; \
Expand Down