Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +10 -0
Dockerfile
CHANGED
|
@@ -24,6 +24,16 @@ RUN apt-get update && apt-get install -y \
|
|
| 24 |
software-properties-common \
|
| 25 |
&& apt-get clean
|
| 26 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
# 设置时区
|
| 28 |
ENV TZ=Asia/Shanghai
|
| 29 |
RUN dpkg-reconfigure -f noninteractive tzdata
|
|
|
|
| 24 |
software-properties-common \
|
| 25 |
&& apt-get clean
|
| 26 |
|
| 27 |
+
|
| 28 |
+
RUN pip install tokenizers==0.18.0
|
| 29 |
+
RUN pip install huggingface-hub==0.21.2
|
| 30 |
+
RUN pip install urllib3==2.0.0
|
| 31 |
+
RUN pip install fsspec==2024.5.0
|
| 32 |
+
RUN pip install certifi==2021.10.8
|
| 33 |
+
RUN pip install pycryptodome==3.9.9
|
| 34 |
+
RUN pip install pytz==2020.5
|
| 35 |
+
RUN pip install python-dateutil==2.9.0.post0
|
| 36 |
+
|
| 37 |
# 设置时区
|
| 38 |
ENV TZ=Asia/Shanghai
|
| 39 |
RUN dpkg-reconfigure -f noninteractive tzdata
|