Rahaf2001 commited on
Commit
ab03eda
·
verified ·
1 Parent(s): b291a53

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -20
Dockerfile DELETED
@@ -1,20 +0,0 @@
1
- FROM python:3.11-slim
2
-
3
- # System deps
4
- RUN apt-get update && apt-get install -y --no-install-recommends \
5
- build-essential curl \
6
- && rm -rf /var/lib/apt/lists/*
7
-
8
- WORKDIR /app
9
-
10
- # Install Python deps first (layer cache)
11
- COPY requirements.txt .
12
- RUN pip install --no-cache-dir -r requirements.txt
13
-
14
- # Copy app
15
- COPY main.py .
16
-
17
- # HF Spaces requires port 7860
18
- EXPOSE 7860
19
-
20
- CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]