Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +5 -2
Dockerfile
CHANGED
|
@@ -13,8 +13,11 @@ RUN apt-get update && \
|
|
| 13 |
DEBIAN_FRONTEND=noninteractive apt-get install -y python3 python3-pip && \
|
| 14 |
pip3 install --no-cache-dir -r /root/requirements.txt
|
| 15 |
|
| 16 |
-
|
| 17 |
-
|
|
|
|
|
|
|
|
|
|
| 18 |
|
| 19 |
|
| 20 |
|
|
|
|
| 13 |
DEBIAN_FRONTEND=noninteractive apt-get install -y python3 python3-pip && \
|
| 14 |
pip3 install --no-cache-dir -r /root/requirements.txt
|
| 15 |
|
| 16 |
+
|
| 17 |
+
RUN pip3 install datasets==1.14.0 huggingface-hub==0.12.1
|
| 18 |
+
|
| 19 |
+
docker build -t my-image-name --mount=type=bind,source="$(pwd)"/packages.txt,target=/root/packages.txt -f Dockerfile
|
| 20 |
+
|
| 21 |
|
| 22 |
|
| 23 |
|