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