abdullahalioo commited on
Commit
09dee7d
·
verified ·
1 Parent(s): 5aa4d01

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -12
Dockerfile CHANGED
@@ -1,18 +1,10 @@
1
- # Use a Python base image with CUDA support for GPU
2
- FROM python:3.10-slim
3
 
4
- # Set working directory
5
  WORKDIR /app
6
 
7
- # Copy requirements and install dependencies
8
  COPY requirements.txt .
9
- RUN pip install --no-cache-dir -r requirements.txt
10
 
11
- # Copy the FastAPI app
12
- COPY main.py .
13
 
14
- # Expose port 8000 (default for Hugging Face Spaces)
15
- EXPOSE 8000
16
-
17
- # Command to run the app with gunicorn
18
- CMD ["gunicorn", "-w", "4", "-k", "uvicorn.workers.UvicornWorker", "main:app", "--bind", "0.0.0.0:8000"]
 
1
+ FROM python:3.10
 
2
 
 
3
  WORKDIR /app
4
 
 
5
  COPY requirements.txt .
6
+ RUN pip install -r requirements.txt
7
 
8
+ COPY . .
 
9
 
10
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]