install ipython

This commit is contained in:
ricwo 2022-11-08 13:47:00 +01:00
parent f7cbde7ecb
commit 9f5983eb42

View file

@ -4,12 +4,14 @@ FROM nvidia/cuda:11.8.0-base-ubuntu22.04
RUN apt-get update && apt-get install -y python3 python3-pip python3-dev
# install dependencies
RUN apt -y install portaudio19-dev git ffmpeg curl ipython
RUN apt -y install portaudio19-dev git ffmpeg curl
# torch
RUN pip install torch==1.12.1+cu116 torchvision==0.13.1+cu116 torchaudio==0.12.1 --extra-index-url https://download.pytorch.org/whl/cu116
# Copy entire repo and install
RUN pip install ipython
# Copy entire repo
COPY . /app
WORKDIR /app