From ee5613a33cfa4c7ec1732b08d5a9149bc4f54caa Mon Sep 17 00:00:00 2001 From: Mohammad Wasil Date: Tue, 22 Aug 2023 17:35:14 +0200 Subject: [PATCH] add nb port and entrypoint --- gpu-notebook/Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gpu-notebook/Dockerfile b/gpu-notebook/Dockerfile index 84f9653..2a476c8 100644 --- a/gpu-notebook/Dockerfile +++ b/gpu-notebook/Dockerfile @@ -20,3 +20,9 @@ USER root RUN rm /tmp/requirements.txt USER $NB_USER + +EXPOSE 8888 + +# Configure container startup +ENTRYPOINT ["tini", "-g", "--"] +CMD ["start-notebook.sh"]