Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
FROM pytorch/pytorch:2.0.1-
|
2 |
|
3 |
ENV DEBIAN_FRONTEND=noninteractive
|
4 |
|
@@ -28,7 +28,7 @@ WORKDIR $HOME/app
|
|
28 |
RUN git clone -b magnet https://github.com/camenduru/audiocraft $HOME/app
|
29 |
|
30 |
# Install dependencies
|
31 |
-
RUN pip install -q av julius omegaconf einops num2words flashy torchaudio==2.0.
|
32 |
RUN pip install -q https://github.com/camenduru/wheels/releases/download/colab/xformers-0.0.20+1dc3d7a.d20240115-cp310-cp310-linux_x86_64.whl
|
33 |
RUN pip install -q .
|
34 |
|
|
|
1 |
+
FROM pytorch/pytorch:2.1.0-cuda12.1-cudnn8-runtime
|
2 |
|
3 |
ENV DEBIAN_FRONTEND=noninteractive
|
4 |
|
|
|
28 |
RUN git clone -b magnet https://github.com/camenduru/audiocraft $HOME/app
|
29 |
|
30 |
# Install dependencies
|
31 |
+
RUN pip install -q av julius omegaconf einops num2words flashy torchaudio==2.1.0 --index-url https://download.pytorch.org/whl/cu121 torchmetrics sentencepiece gradio
|
32 |
RUN pip install -q https://github.com/camenduru/wheels/releases/download/colab/xformers-0.0.20+1dc3d7a.d20240115-cp310-cp310-linux_x86_64.whl
|
33 |
RUN pip install -q .
|
34 |
|