Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +5 -1
Dockerfile
CHANGED
|
@@ -94,10 +94,14 @@ ENV PATH=$PATH:/home/vscode/.local/bin
|
|
| 94 |
# -----------------------------
|
| 95 |
# Finishing touches -- you can comment these if not needed
|
| 96 |
# -----------------------------
|
| 97 |
-
# pip
|
| 98 |
RUN pip install --upgrade pip setuptools wheel \
|
| 99 |
&& pip install black flake8 mypy jupyterlab ipython notebook
|
| 100 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 101 |
# Node tools
|
| 102 |
RUN npm install -g typescript ts-node nodemon
|
| 103 |
|
|
|
|
| 94 |
# -----------------------------
|
| 95 |
# Finishing touches -- you can comment these if not needed
|
| 96 |
# -----------------------------
|
| 97 |
+
# pip packages - dev/machine learning/AI
|
| 98 |
RUN pip install --upgrade pip setuptools wheel \
|
| 99 |
&& pip install black flake8 mypy jupyterlab ipython notebook
|
| 100 |
|
| 101 |
+
# more pip packages - for Hugging Face Hub
|
| 102 |
+
RUN pip install huggingface_hub huggingface_hub[cli] hf_xet hf_transfer
|
| 103 |
+
ENV HF_HUB_ENABLE_HF_TRANSFER=1
|
| 104 |
+
|
| 105 |
# Node tools
|
| 106 |
RUN npm install -g typescript ts-node nodemon
|
| 107 |
|