-
Notifications
You must be signed in to change notification settings - Fork 6
/
Dockerfile
53 lines (38 loc) · 1.36 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
FROM openjdk:11.0.3-jdk
RUN apt-get update
RUN apt-get install -y python3-pip cron sudo
# add requirements.txt, written this way to gracefully ignore a missing file
COPY . .
RUN ([ -f requirements.txt ] \
&& pip3 install --no-cache-dir -r requirements.txt) \
|| pip3 install --no-cache-dir jupyter jupyterlab
USER root
# Download the kernel release
RUN curl -L https://github.com/SpencerPark/IJava/releases/download/v1.3.0/ijava-1.3.0.zip > ijava-kernel.zip
# Unpack and install the kernel
RUN unzip ijava-kernel.zip -d ijava-kernel \
&& cd ijava-kernel \
&& python3 install.py --sys-prefix
# Setup RISE
RUN pip3 install RISE
# Set up the user environment
ENV NB_USER jovyan
ENV NB_UID 1000
ENV HOME /home/$NB_USER
RUN adduser --disabled-password \
--gecos "Default user" \
--uid $NB_UID \
$NB_USER
COPY . $HOME
RUN chown -R $NB_UID $HOME
RUN echo "$NB_USER ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
USER $NB_USER
WORKDIR $HOME
#==============================================================================================
# Use the following command when running from binder
#
CMD ["jupyter", "notebook", "--ip", "0.0.0.0"]
#==============================================================================================
# Use the following command when running locally
#
# CMD ["jupyter", "notebook", "--ip", "0.0.0.0", "--NotebookApp.token=''"]