Alexa17 commited on
Commit
18d7cad
verified
1 Parent(s): 2498cf2

Delete Dockerfile.txt

Browse files
Files changed (1) hide show
  1. Dockerfile.txt +0 -14
Dockerfile.txt DELETED
@@ -1,14 +0,0 @@
1
- # Usa una imagen base de Python
2
- FROM python:3.9-slim
3
-
4
- # Define el directorio de trabajo dentro del contenedor
5
- WORKDIR /app
6
-
7
- # Copia los archivos del proyecto al contenedor
8
- COPY . /app
9
-
10
- # Instala las dependencias desde requirements.txt
11
- RUN pip install --no-cache-dir -r requirements.txt
12
-
13
- # Comando para ejecutar el script de la aplicaci贸n
14
- CMD ["python", "app.py"]