Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
|
@@ -1,5 +1,9 @@
|
|
| 1 |
FROM ubuntu:latest
|
| 2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
# Copy the package list and requirements file to the container
|
| 4 |
COPY packages.txt requirements.txt /root/
|
| 5 |
|
|
|
|
| 1 |
FROM ubuntu:latest
|
| 2 |
|
| 3 |
+
RUN pip install --no-cache-dir pip==22.3.1
|
| 4 |
+
RUN pip install --no-cache-dir datasets "huggingface-hub>=0.12.1" "protobuf<4" "click<8.1"
|
| 5 |
+
|
| 6 |
+
|
| 7 |
# Copy the package list and requirements file to the container
|
| 8 |
COPY packages.txt requirements.txt /root/
|
| 9 |
|