Update Dockerfile
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
|
@@ -8,14 +8,13 @@ RUN apt-get update && apt-get install -y \
|
|
| 8 |
git \
|
| 9 |
python3.10 \
|
| 10 |
python3-pip \
|
| 11 |
-
libcuda-dev \
|
| 12 |
&& apt-get clean
|
| 13 |
|
| 14 |
|
| 15 |
RUN apt-get install poppler-utils -y
|
| 16 |
|
| 17 |
|
| 18 |
-
RUN pip3 install torch torchvision torchaudio
|
| 19 |
RUN useradd -m -u 1000 user
|
| 20 |
|
| 21 |
USER user
|
|
|
|
| 8 |
git \
|
| 9 |
python3.10 \
|
| 10 |
python3-pip \
|
|
|
|
| 11 |
&& apt-get clean
|
| 12 |
|
| 13 |
|
| 14 |
RUN apt-get install poppler-utils -y
|
| 15 |
|
| 16 |
|
| 17 |
+
RUN pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu113
|
| 18 |
RUN useradd -m -u 1000 user
|
| 19 |
|
| 20 |
USER user
|