Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
|
@@ -22,12 +22,12 @@ ENV HOME=/home/user \
|
|
| 22 |
GRADIO_THEME=huggingface \
|
| 23 |
SYSTEM=spaces
|
| 24 |
|
| 25 |
-
# download falcon-40b
|
| 26 |
-
RUN python -c "from transformers import AutoModel; AutoModel.from_pretrained('tiiuae/falcon-40b', trust_remote_code=True)"
|
| 27 |
-
|
| 28 |
|
| 29 |
# Set the working directory to the user's home directory
|
| 30 |
WORKDIR $HOME/app
|
| 31 |
|
|
|
|
|
|
|
|
|
|
| 32 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
| 33 |
COPY --chown=user . $HOME/app
|
|
|
|
| 22 |
GRADIO_THEME=huggingface \
|
| 23 |
SYSTEM=spaces
|
| 24 |
|
|
|
|
|
|
|
|
|
|
| 25 |
|
| 26 |
# Set the working directory to the user's home directory
|
| 27 |
WORKDIR $HOME/app
|
| 28 |
|
| 29 |
+
# download falcon-40b
|
| 30 |
+
RUN python -c "from transformers import AutoModel; AutoModel.from_pretrained('tiiuae/falcon-40b', trust_remote_code=True)"
|
| 31 |
+
|
| 32 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
| 33 |
COPY --chown=user . $HOME/app
|