We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05cc015 commit ed1ef06Copy full SHA for ed1ef06
jupyterhub/hub/hub.Dockerfile
@@ -1,11 +1,15 @@
1
-FROM quay.io/jupyterhub/jupyterhub:5.2.1
+FROM quay.io/jupyter/datascience-notebook:2024-12-23
2
+
3
+USER root
4
+RUN apt-get update && apt-get install -y curl \
5
+ && rm -rf /var/lib/apt/lists/*
6
7
ENV TINI_VERSION=v0.19.0
-ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini
-RUN chmod +x /tini
8
+RUN curl -L https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini -o /tini \
9
+ && chmod +x /tini
10
11
WORKDIR /srv/jupyterhub
12
13
ENTRYPOINT ["/tini", "--"]
14
-CMD ["jupyterhub"]
15
+CMD ["start-notebook.py"]
0 commit comments