Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
cdborinstein commited on
Commit ·
2ff137e
1
Parent(s): 06385c0
Install huggingface_hub and argilla packages for backup
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -1,5 +1,8 @@
|
|
| 1 |
FROM argilla/argilla-quickstart:latest
|
| 2 |
|
|
|
|
|
|
|
|
|
|
| 3 |
# Copy backup script to a location honcho can find
|
| 4 |
COPY backup_to_hub.py /home/argilla/backup_to_hub.py
|
| 5 |
|
|
|
|
| 1 |
FROM argilla/argilla-quickstart:latest
|
| 2 |
|
| 3 |
+
# Install dependencies for backup script
|
| 4 |
+
RUN pip install --no-cache-dir huggingface_hub argilla
|
| 5 |
+
|
| 6 |
# Copy backup script to a location honcho can find
|
| 7 |
COPY backup_to_hub.py /home/argilla/backup_to_hub.py
|
| 8 |
|