SanskarModi commited on
Commit
a00668e
·
verified ·
1 Parent(s): 6445597

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -22
Dockerfile DELETED
@@ -1,22 +0,0 @@
1
- FROM python:3.10-slim
2
-
3
- WORKDIR /app
4
-
5
- # Install system dependencies required for OpenCV and mediapipe
6
- RUN apt-get update && apt-get install -y \
7
- libgl1-mesa-glx \
8
- libglib2.0-0 \
9
- && apt-get clean \
10
- && rm -rf /var/lib/apt/lists/*
11
-
12
- # Install Python dependencies
13
- COPY requirements.txt .
14
- RUN pip install --upgrade pip && pip install --no-cache-dir -r requirements.txt
15
-
16
- # Copy application code
17
- COPY . .
18
-
19
- EXPOSE 8000
20
-
21
- # Start FastAPI app
22
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]