Last active
October 29, 2019 02:16
-
-
Save conker84/4ffc9a2f0125c808b4dfcf3b7d70b043 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM apache/zeppelin:0.8.0 | |
# Workaround to "fix" https://issues.apache.org/jira/browse/ZEPPELIN-3586 | |
RUN echo "$LOG_TAG Download Spark binary" && \ | |
wget -O /tmp/spark-2.3.1-bin-hadoop2.7.tgz http://apache.panu.it/spark/spark-2.3.1/spark-2.3.1-bin-hadoop2.7.tgz && \ | |
tar -zxvf /tmp/spark-2.3.1-bin-hadoop2.7.tgz && \ | |
rm -rf /tmp/spark-2.3.1-bin-hadoop2.7.tgz && \ | |
mv spark-2.3.1-bin-hadoop2.7 /spark-2.3.1-bin-hadoop2.7 | |
ENV SPARK_HOME=/spark-2.3.1-bin-hadoop2.7 | |
CMD ["bin/zeppelin.sh"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment