Manar312 commited on
Commit
fdc5a37
·
verified ·
1 Parent(s): 6dce2be

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -24
Dockerfile DELETED
@@ -1,24 +0,0 @@
1
- FROM python:3.10-slim
2
-
3
- # System dependencies for librosa / audio processing
4
- RUN apt-get update && apt-get install -y \
5
- ffmpeg \
6
- libsndfile1 \
7
- && rm -rf /var/lib/apt/lists/*
8
-
9
- WORKDIR /app
10
-
11
- # Install Python dependencies
12
- COPY requirements.txt .
13
- RUN pip install --no-cache-dir -r requirements.txt
14
-
15
- # Copy application code
16
- COPY app.py .
17
-
18
- # HuggingFace Spaces runs on port 7860
19
- EXPOSE 7860
20
-
21
- # MODEL_PATH env var – override if you name your .pth differently
22
- ENV MODEL_PATH=entire_model_vol_8_5_5_40.pth
23
-
24
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]