Blandskron commited on
Commit
217f184
verified
1 Parent(s): ed0e610

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +13 -0
Dockerfile ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.9
2
+
3
+ WORKDIR /app
4
+
5
+ # Copiar los archivos de requisitos y c贸digo
6
+ COPY requirements.txt .
7
+ COPY . .
8
+
9
+ # Instalar las dependencias
10
+ RUN pip install -r requirements.txt
11
+
12
+ # Comando para ejecutar la aplicaci贸n
13
+ CMD ["python", "app.py"]