diff --git a/Dockerfile b/Dockerfile index 8ec5586..5babab8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,7 @@ -FROM python:3.11 -RUN pip3 install \ - 'jupyterhub==5.*' \ - 'notebook==7.*' \ - "aqora-cli" +FROM quay.io/jupyter/base-notebook -# create a user, since we don't want to run as root -RUN useradd -m jovyan -ENV HOME=/home/jovyan -WORKDIR $HOME -USER jovyan +# Install aqora-cli +RUN pip install aqora-cli -CMD ["jupyterhub-singleuser"] \ No newline at end of file +# Ensure the PATH is correct +ENV PATH="${PATH}:/home/jovyan/.local/bin" \ No newline at end of file