Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
|
@@ -2,9 +2,11 @@ FROM python:3.11
|
|
| 2 |
|
| 3 |
ENV DEBIAN_FRONTEND=noninteractive
|
| 4 |
|
|
|
|
|
|
|
| 5 |
RUN add-apt-repository multiverse; dpkg --add-architecture i386; apt update
|
| 6 |
|
| 7 |
-
RUN apt install lib32gcc-s1
|
| 8 |
|
| 9 |
RUN pip3 install --no-cache-dir huggingface_hub huggingface_hub[cli]
|
| 10 |
|
|
|
|
| 2 |
|
| 3 |
ENV DEBIAN_FRONTEND=noninteractive
|
| 4 |
|
| 5 |
+
RUN apt install software-properties-common -y
|
| 6 |
+
|
| 7 |
RUN add-apt-repository multiverse; dpkg --add-architecture i386; apt update
|
| 8 |
|
| 9 |
+
RUN apt install lib32gcc-s1 -y
|
| 10 |
|
| 11 |
RUN pip3 install --no-cache-dir huggingface_hub huggingface_hub[cli]
|
| 12 |
|