mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-14 13:32:56 +00:00
27 lines
718 B
Docker
27 lines
718 B
Docker
# Copyright (c) Jupyter Development Team.
|
|
# Distributed under the terms of the Modified BSD License.
|
|
ARG OWNER=jupyter
|
|
ARG BASE_CONTAINER=$OWNER/minimal-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
|
|
|
|
# Julia dependencies
|
|
# install Julia packages in /opt/julia instead of ${HOME}
|
|
ENV JULIA_DEPOT_PATH=/opt/julia \
|
|
JULIA_PKGDIR=/opt/julia
|
|
|
|
# Setup Julia
|
|
RUN /opt/setup-scripts/setup-julia.bash
|
|
|
|
USER ${NB_UID}
|
|
|
|
# Setup IJulia kernel & other packages
|
|
RUN /opt/setup-scripts/setup-julia-packages.bash
|