diff options
author | Lusheng Ji <lji@research.att.com> | 2017-04-05 22:58:20 -0400 |
---|---|---|
committer | Lusheng Ji <lji@research.att.com> | 2017-04-06 14:55:19 +0000 |
commit | 64239f17aed46571ce4eec7c5fba709fa04818bb (patch) | |
tree | 431ace172120f7dc862c7ddea02aa01be05d5c2d /docker_files/Dockerfile-local | |
parent | 8e1684396aec6611ce0a1772ee2e4f9b9934c150 (diff) |
fixing curl hang in some deployments
Change-Id: Icd39bd289c8d4dccd440e725636c90b86ebe5e59
Signed-off-by: Lusheng Ji <lji@research.att.com>
Diffstat (limited to 'docker_files/Dockerfile-local')
-rw-r--r-- | docker_files/Dockerfile-local | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/docker_files/Dockerfile-local b/docker_files/Dockerfile-local new file mode 100644 index 0000000..4909af3 --- /dev/null +++ b/docker_files/Dockerfile-local @@ -0,0 +1,22 @@ +FROM anapsix/alpine-java + +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"] |