GianmarcoJTA commited on
Commit
eb5af20
·
verified ·
1 Parent(s): 9cd64d1

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -17,6 +17,9 @@ WORKDIR /app
17
  COPY app.py /app/
18
  COPY requirements.txt /app/
19
 
 
 
 
20
  # Instalar las dependencias de Python
21
  RUN pip install --no-cache-dir -r requirements.txt
22
 
 
17
  COPY app.py /app/
18
  COPY requirements.txt /app/
19
 
20
+ # Copiar el archivo Haar Cascade al contenedor
21
+ COPY haarcascade_frontalface_default.xml /app/haarcascade_frontalface_default.xml
22
+
23
  # Instalar las dependencias de Python
24
  RUN pip install --no-cache-dir -r requirements.txt
25