teszenofficial commited on
Commit
e810242
·
verified ·
1 Parent(s): dad4597

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -19
Dockerfile DELETED
@@ -1,19 +0,0 @@
1
- FROM python:3.10-slim
2
-
3
- WORKDIR /app
4
-
5
- # Dependencias del sistema (audio)
6
- RUN apt-get update && apt-get install -y \
7
- ffmpeg \
8
- libsndfile1 \
9
- && rm -rf /var/lib/apt/lists/*
10
-
11
- COPY requirements.txt .
12
-
13
- RUN pip install --no-cache-dir -r requirements.txt
14
-
15
- COPY . .
16
-
17
- EXPOSE 7860
18
-
19
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]