doctorlinux commited on
Commit
4350d2a
verified
1 Parent(s): e06fba8

Delete dockerfile

Browse files
Files changed (1) hide show
  1. dockerfile +0 -24
dockerfile DELETED
@@ -1,24 +0,0 @@
1
- FROM python:3.9-slim
2
-
3
- WORKDIR /app
4
-
5
- # Instalar dependencias del sistema
6
- RUN apt-get update && apt-get install -y \
7
- gcc \
8
- g++ \
9
- && rm -rf /var/lib/apt/lists/*
10
-
11
- # Copiar requirements primero (para cache de Docker)
12
- COPY requirements.txt .
13
-
14
- # Instalar dependencias de Python
15
- RUN pip install --no-cache-dir -r requirements.txt
16
-
17
- # Copiar aplicaci贸n
18
- COPY . .
19
-
20
- # Exponer puerto
21
- EXPOSE 7860
22
-
23
- # Comando de inicio
24
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]