mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-10 11:32:57 +00:00

* add scala version choise * add ; \ fi * change checksum and removed default scala version * remove RUN * add { } and remove old code * remove 3 duplicated lines. * Add the commint as a comment * Add back #Fix * Rename downloadeds as spark.tgz * Fix doc * Update specifics.md * New fix * Fix wget * Remove make link to spark * Set full path to /usr/local/spark * Change /usr/local/spark to ${SPARK_HOME} * fix RUN with if * Remove empty lines * Update Dockerfile * Update Dockerfile * Update Dockerfile Co-authored-by: Ayaz Salikhov <mathbunnyru@users.noreply.github.com>
73 lines
2.7 KiB
Docker
73 lines
2.7 KiB
Docker
# Copyright (c) Jupyter Development Team.
|
|
# Distributed under the terms of the Modified BSD License.
|
|
ARG OWNER=jupyter
|
|
ARG BASE_CONTAINER=$OWNER/scipy-notebook
|
|
FROM $BASE_CONTAINER
|
|
|
|
LABEL maintainer="Jupyter Project <jupyter@googlegroups.com>"
|
|
|
|
# Fix: https://github.com/hadolint/hadolint/wiki/DL4006
|
|
# Fix: https://github.com/koalaman/shellcheck/wiki/SC3014
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|
|
|
USER root
|
|
|
|
# Spark dependencies
|
|
# Default values can be overridden at build time
|
|
# (ARGS are in lower case to distinguish them from ENV)
|
|
ARG spark_version="3.3.0"
|
|
ARG hadoop_version="3"
|
|
ARG scala_version
|
|
ARG spark_checksum="1e8234d0c1d2ab4462d6b0dfe5b54f2851dcd883378e0ed756140e10adfb5be4123961b521140f580e364c239872ea5a9f813a20b73c69cb6d4e95da2575c29c"
|
|
ARG openjdk_version="17"
|
|
|
|
ENV APACHE_SPARK_VERSION="${spark_version}" \
|
|
HADOOP_VERSION="${hadoop_version}"
|
|
|
|
RUN apt-get update --yes && \
|
|
apt-get install --yes --no-install-recommends \
|
|
"openjdk-${openjdk_version}-jre-headless" \
|
|
ca-certificates-java && \
|
|
apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
# Spark installation
|
|
WORKDIR /tmp
|
|
|
|
RUN if [ -z "${scala_version}" ]; then \
|
|
wget -qO "spark.tgz" "https://archive.apache.org/dist/spark/spark-${APACHE_SPARK_VERSION}/spark-${APACHE_SPARK_VERSION}-bin-hadoop${HADOOP_VERSION}.tgz"; \
|
|
else \
|
|
wget -qO "spark.tgz" "https://archive.apache.org/dist/spark/spark-${APACHE_SPARK_VERSION}/spark-${APACHE_SPARK_VERSION}-bin-hadoop${HADOOP_VERSION}-scala${scala_version}.tgz"; \
|
|
fi && \
|
|
echo "${spark_checksum} *spark.tgz" | sha512sum -c - && \
|
|
tar xzf "spark.tgz" -C /usr/local --owner root --group root --no-same-owner && \
|
|
rm "spark.tgz"
|
|
|
|
# Configure Spark
|
|
ENV SPARK_HOME=/usr/local/spark
|
|
ENV SPARK_OPTS="--driver-java-options=-Xms1024M --driver-java-options=-Xmx4096M --driver-java-options=-Dlog4j.logLevel=info" \
|
|
PATH="${PATH}:${SPARK_HOME}/bin"
|
|
|
|
RUN if [ -z "${scala_version}" ]; then \
|
|
ln -s "spark-${APACHE_SPARK_VERSION}-bin-hadoop${HADOOP_VERSION}" "${SPARK_HOME}"; \
|
|
else \
|
|
ln -s "spark-${APACHE_SPARK_VERSION}-bin-hadoop${HADOOP_VERSION}-scala${scala_version}" "${SPARK_HOME}"; \
|
|
fi && \
|
|
# Add a link in the before_notebook hook in order to source automatically PYTHONPATH && \
|
|
mkdir -p /usr/local/bin/before-notebook.d && \
|
|
ln -s "${SPARK_HOME}/sbin/spark-config.sh" /usr/local/bin/before-notebook.d/spark-config.sh
|
|
|
|
# Configure IPython system-wide
|
|
COPY ipython_kernel_config.py "/etc/ipython/"
|
|
RUN fix-permissions "/etc/ipython/"
|
|
|
|
USER ${NB_UID}
|
|
|
|
# Install pyarrow
|
|
RUN mamba install --quiet --yes \
|
|
'pyarrow' && \
|
|
mamba clean --all -f -y && \
|
|
fix-permissions "${CONDA_DIR}" && \
|
|
fix-permissions "/home/${NB_USER}"
|
|
|
|
WORKDIR "${HOME}"
|