Beats / Dockerfile
Blandskron's picture
Create Dockerfile
217f184 verified
raw
history blame contribute delete
240 Bytes
FROM python:3.9
WORKDIR /app
# Copiar los archivos de requisitos y c贸digo
COPY requirements.txt .
COPY . .
# Instalar las dependencias
RUN pip install -r requirements.txt
# Comando para ejecutar la aplicaci贸n
CMD ["python", "app.py"]