-
Notifications
You must be signed in to change notification settings - Fork 227
/
Copy pathDockerfile
72 lines (51 loc) · 2.32 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
ARG BASE_CONTAINER=jupyter/minimal-notebook:2023-03-13
FROM $BASE_CONTAINER
ARG SPARK_VERSION
ENV SPARK_VER $SPARK_VERSION
ENV SPARK_HOME /opt/spark
RUN conda install --quiet --yes \
cffi \
send2trash \
requests \
future \
pycryptodomex && \
conda clean --all && \
fix-permissions $CONDA_DIR && \
fix-permissions /home/$NB_USER
USER root
RUN apt update && apt install -yq curl openjdk-8-jdk
ENV JAVA_HOME /usr/lib/jvm/java
RUN ln -s $(readlink -f /usr/bin/javac | sed "s:/bin/javac::") ${JAVA_HOME}
RUN curl https://apt.releases.teleport.dev/gpg \
-o /usr/share/keyrings/teleport-archive-keyring.asc
RUN source /etc/os-release
RUN echo "deb [signed-by=/usr/share/keyrings/teleport-archive-keyring.asc] \
https://apt.releases.teleport.dev/ubuntu jammy stable/v11" \
| tee /etc/apt/sources.list.d/teleport.list > /dev/null
RUN apt-get update && apt-get install teleport
# Download and install kubectl
RUN curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
RUN sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl
# Download and install Spark
RUN curl -s https://archive.apache.org/dist/spark/spark-${SPARK_VER}/spark-${SPARK_VER}-bin-hadoop2.7.tgz | \
tar -xz -C /opt && \
ln -s ${SPARK_HOME}-${SPARK_VER}-bin-hadoop2.7 $SPARK_HOME && \
mkdir -p /usr/hdp/current && \
ln -s ${SPARK_HOME}-${SPARK_VER}-bin-hadoop2.7 /usr/hdp/current/spark2-client
# Install Enterprise Gateway wheel and kernelspecs
COPY jupyter_enterprise_gateway*.whl /tmp/
RUN pip install /tmp/jupyter_enterprise_gateway*.whl && \
rm -f /tmp/jupyter_enterprise_gateway*.whl
ADD jupyter_enterprise_gateway_kernelspecs*.tar.gz /usr/local/share/jupyter/kernels/
ADD jupyter_enterprise_gateway_kernel_image_files*.tar.gz /usr/local/bin/
COPY start-enterprise-gateway.sh /usr/local/bin/
RUN chown jovyan:users /usr/local/bin/start-enterprise-gateway.sh && \
chmod 0755 /usr/local/bin/start-enterprise-gateway.sh && \
touch /usr/local/share/jupyter/enterprise-gateway.log && \
chown -R jovyan:users /usr/local/share/jupyter /usr/local/bin/kernel-launchers && \
chmod 0666 /usr/local/share/jupyter/enterprise-gateway.log && \
rm -f /usr/local/bin/bootstrap-kernel.sh
USER jovyan
CMD ["/usr/local/bin/start-enterprise-gateway.sh"]
EXPOSE 8888
WORKDIR /usr/local/bin