Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
|
@@ -30,4 +30,6 @@ WORKDIR $HOME/app
|
|
| 30 |
RUN python -c "from transformers import AutoModel; AutoModel.from_pretrained('tiiuae/falcon-7b', 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
|
|
|
|
|
|
|
|
|
| 30 |
RUN python -c "from transformers import AutoModel; AutoModel.from_pretrained('tiiuae/falcon-7b', 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
|
| 34 |
+
|
| 35 |
+
CMD ["python", "app.py"]
|