Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -23,5 +23,8 @@ COPY . .
|
|
| 23 |
# Expose port for the API
|
| 24 |
EXPOSE 8000
|
| 25 |
|
|
|
|
|
|
|
|
|
|
| 26 |
# Command to run the application
|
| 27 |
CMD ["python", "app.py"]
|
|
|
|
| 23 |
# Expose port for the API
|
| 24 |
EXPOSE 8000
|
| 25 |
|
| 26 |
+
# Download model weights
|
| 27 |
+
RUN huggingface-cli download openai/gpt-oss-20b --include "original/*" --local-dir /app/gpt-oss-20b
|
| 28 |
+
|
| 29 |
# Command to run the application
|
| 30 |
CMD ["python", "app.py"]
|