MarcosFRGames commited on
Commit
80b5b7f
·
verified ·
1 Parent(s): e2d4608

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -13,6 +13,9 @@ RUN apt-get update && \
13
  # Copiar requirements primero (para mejor cache de Docker)
14
  COPY requirements.txt .
15
 
 
 
 
16
  # Instalar dependencias de Python
17
  RUN pip install --no-cache-dir -r requirements.txt
18
 
 
13
  # Copiar requirements primero (para mejor cache de Docker)
14
  COPY requirements.txt .
15
 
16
+ # Copiar modelos
17
+ COPY engines.json /app/engines.json
18
+
19
  # Instalar dependencias de Python
20
  RUN pip install --no-cache-dir -r requirements.txt
21