Skip to content

Commit ed1ef06

Browse files
committed
asavsdfdssdfljdadsd
1 parent 05cc015 commit ed1ef06

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

jupyterhub/hub/hub.Dockerfile

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
1-
FROM quay.io/jupyterhub/jupyterhub:5.2.1
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/*
26

37
ENV TINI_VERSION=v0.19.0
4-
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini
5-
RUN chmod +x /tini
8+
RUN curl -L https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini -o /tini \
9+
&& chmod +x /tini
610

711
WORKDIR /srv/jupyterhub
812

913
ENTRYPOINT ["/tini", "--"]
1014

11-
CMD ["jupyterhub"]
15+
CMD ["start-notebook.py"]

0 commit comments

Comments
 (0)