Create Dockerfile
Browse files- Dockerfile +9 -0
Dockerfile
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Install pip and dependencies
|
| 2 |
+
RUN pip install --no-cache-dir --upgrade pip && \
|
| 3 |
+
pip install --no-cache-dir \
|
| 4 |
+
datasets \
|
| 5 |
+
"huggingface-hub>=0.19" \
|
| 6 |
+
"hf-transfer>=0.1.4" \
|
| 7 |
+
"protobuf<4" \
|
| 8 |
+
"click<8.1" \
|
| 9 |
+
"pydantic~=1.0"
|