Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ivukotic committed Oct 22, 2024
1 parent de18c95 commit 9516032
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ LABEL maintainer Ilija Vukotic <[email protected]>
#############################
# Python 3 packages
#############################

RUN python3 -m pip --no-cache-dir install \
RUN python3 -m venv base
RUN . base/bin/activate && \
python -m pip --no-cache-dir install \
requests \
plumbum \
bokeh \
Expand Down Expand Up @@ -44,8 +45,8 @@ RUN python3 -m pip --no-cache-dir install \
RISE \
Cython

RUN python3 -m pip install --upgrade pip
RUN python3 -m ipykernel install --name py312 --display-name "Python 3.12"
RUN python -m pip install --upgrade pip
RUN python -m ipykernel install --name py312 --display-name "Python 3.12"


# build info
Expand Down

0 comments on commit 9516032

Please sign in to comment.