xrp commited on
Commit
94ddad1
·
verified ·
1 Parent(s): c6669af

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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