Skip to content

Commit

Permalink
improve Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
stubbi committed Jun 21, 2024
1 parent 8e73e06 commit d08f0f2
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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"]
# Ensure the PATH is correct
ENV PATH="${PATH}:/home/jovyan/.local/bin"

0 comments on commit d08f0f2

Please sign in to comment.