Permalink
Cannot retrieve contributors at this time
22 lines (17 sloc)
925 Bytes
| FROM anapsix/alpine-java | |
| ARG kafka_version=0.11.0.0 | |
| ARG scala_version=2.12 | |
| RUN apk add --update unzip wget curl docker jq coreutils | |
| ENV KAFKA_VERSION=$kafka_version SCALA_VERSION=$scala_version | |
| ADD scripts/download-kafka.sh /tmp/download-kafka.sh | |
| RUN chmod a+x /tmp/download-kafka.sh && sync && /tmp/download-kafka.sh && tar xfz /tmp/kafka_${SCALA_VERSION}-${KAFKA_VERSION}.tgz -C /opt && rm /tmp/kafka_${SCALA_VERSION}-${KAFKA_VERSION}.tgz && ln -s /opt/kafka_${SCALA_VERSION}-${KAFKA_VERSION} /opt/kafka | |
| VOLUME ["/kafka"] | |
| ENV KAFKA_HOME /opt/kafka | |
| ENV PATH ${PATH}:${KAFKA_HOME}/bin | |
| ADD scripts/start-kafka.sh /usr/bin/start-kafka.sh | |
| ADD scripts/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/create-topics.sh | |
| # Use "exec" form so that it runs as PID 1 (useful for graceful shutdown) | |
| CMD ["start-kafka.sh"] |