summaryrefslogtreecommitdiffstats
path: root/demo/docker_files/Dockerfile-local
diff options
context:
space:
mode:
authorefiacor <fiachra.corcoran@est.tech>2021-07-23 19:15:53 +0100
committerefiacor <fiachra.corcoran@est.tech>2021-08-09 17:22:44 +0100
commit0beea783cef8a84d8bc2655ea678e00d459cc831 (patch)
treeafa6b459a7f46910566dfce2d39a30ebe84d60e2 /demo/docker_files/Dockerfile-local
parent49b2a82292f8be3b73fe7460573260d47b5c2b98 (diff)
[DMAAP-MR] Remove redundant data
Signed-off-by: efiacor <fiachra.corcoran@est.tech> Change-Id: I56a8417f72d892705230e94f079db3024170e884 Issue-ID: DMAAP-1638
Diffstat (limited to 'demo/docker_files/Dockerfile-local')
-rw-r--r--demo/docker_files/Dockerfile-local22
1 files changed, 0 insertions, 22 deletions
diff --git a/demo/docker_files/Dockerfile-local b/demo/docker_files/Dockerfile-local
deleted file mode 100644
index caf7ce6..0000000
--- a/demo/docker_files/Dockerfile-local
+++ /dev/null
@@ -1,22 +0,0 @@
-FROM openjdk:8-jdk
-
-MAINTAINER Wurstmeister
-
-RUN apk add --update tar wget curl docker coreutils
-
-ENV KAFKA_VERSION="0.8.1.1" SCALA_VERSION="2.9.2"
-COPY kafka_2.9.2-0.8.1.1.tgz /tmp/kafka_2.9.2-0.8.1.1.tgz
-RUN tar xfz /tmp/kafka_${SCALA_VERSION}-${KAFKA_VERSION}.tgz -C /opt
-
-VOLUME ["/kafka"]
-
-ENV KAFKA_HOME /opt/kafka_2.9.2-0.8.1.1
-ADD start-kafka.sh /usr/bin/start-kafka.sh
-ADD broker-list.sh /usr/bin/broker-list.sh
-ADD create-topics.sh /usr/bin/create-topics.sh
-# The scripts need to have executable permission
-RUN chmod a+x /usr/bin/start-kafka.sh && \
- chmod a+x /usr/bin/broker-list.sh && \
- chmod a+x /usr/bin/create-topics.sh
-# Use "exec" form so that it runs as PID 1 (useful for graceful shutdown)
-CMD ["start-kafka.sh"]