Fix docker image for Ubuntu 23/14123/1
authorVarun Gudisena <vg411h@att.com>
Thu, 21 Sep 2017 06:26:09 +0000 (01:26 -0500)
committerVarun Gudisena <vg411h@att.com>
Thu, 21 Sep 2017 06:26:16 +0000 (01:26 -0500)
Modified dockerfile to work with ubuntu

issue-id: DMAAP-139
Change-Id: I26ed1c06436e285792009a4c7a7c82dff46294a5
Signed-off-by: Varun Gudisena <vg411h@att.com>
src/main/resources/docker-compose/Dockerfile

index d1f96e8..71943d6 100644 (file)
@@ -6,7 +6,8 @@ RUN apk add --update unzip wget curl docker jq coreutils
 
 ENV KAFKA_VERSION="0.8.1.1" SCALA_VERSION="2.9.2"
 ADD download-kafka.sh /tmp/download-kafka.sh
-RUN chmod a+x /tmp/download-kafka.sh && /tmp/download-kafka.sh && tar xfz /tmp/kafka_${SCALA_VERSION}-${KAFKA_VERSION}.tgz -C /opt && rm /tmp/kafka_${SCALA_VERSION}-${KAFKA_VERSION}.tgz
+RUN chmod a+x /tmp/download-kafka.sh; sync;
+RUN /tmp/download-kafka.sh && tar xfz /tmp/kafka_${SCALA_VERSION}-${KAFKA_VERSION}.tgz -C /opt && rm /tmp/kafka_${SCALA_VERSION}-${KAFKA_VERSION}.tgz
 
 VOLUME ["/kafka"]
 
@@ -15,8 +16,8 @@ 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; sync;
-RUN chmod a+x /usr/bin/broker-list.sh && \
+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"]