Spaces:
Runtime error
Runtime error
Create Dockerfile
Browse files- Dockerfile +0 -4
Dockerfile
CHANGED
|
@@ -1,9 +1,5 @@
|
|
| 1 |
FROM python:3.11-slim
|
| 2 |
-
|
| 3 |
WORKDIR /app
|
| 4 |
-
|
| 5 |
RUN pip install --no-cache-dir torch transformers peft bitsandbytes fastapi uvicorn
|
| 6 |
-
|
| 7 |
COPY . .
|
| 8 |
-
|
| 9 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
|
| 1 |
FROM python:3.11-slim
|
|
|
|
| 2 |
WORKDIR /app
|
|
|
|
| 3 |
RUN pip install --no-cache-dir torch transformers peft bitsandbytes fastapi uvicorn
|
|
|
|
| 4 |
COPY . .
|
|
|
|
| 5 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|