From 782a8630f1825a82e6a6f1a8ef1218a6d29c497f Mon Sep 17 00:00:00 2001 From: Patrick Hynes Date: Tue, 13 Dec 2022 14:05:57 +0100 Subject: [PATCH] #2 : Initial commit --- Dockerfile | 6 ++++++ README.md | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c68d9ed --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM openjdk:11.0.2 +ARG CONFLUENT_URL +ARG CONFLUENT_MAJOR_VERSION +ARG CONFLUENT_MINOR_VERSION +RUN curl -O $CONFLUENT_URL/$CONFLUENT_MAJOR_VERSION/confluent-$CONFLUENT_MINOR_VERSION.zip && unzip confluent-$CONFLUENT_MINOR_VERSION.zip && rm confluent-$CONFLUENT_MINOR_VERSION.zip +ENV PATH="${PATH}:/confluent-$CONFLUENT_MINOR_VERSION/bin" diff --git a/README.md b/README.md index 49a8b3e..61f9035 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ # install-confluent-platform -Simple repository with scripts to install confluent platform +Simple repository with Dockerfile for installing Confluent Platform tools in a container