tyriaa commited on
Commit
79cfe7b
·
1 Parent(s): 4f59b81

Initialisation 2

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -1
Dockerfile CHANGED
@@ -7,6 +7,9 @@ WORKDIR /app
7
  # Copier les fichiers nécessaires dans le conteneur
8
  COPY . /app
9
 
 
 
 
10
  # Installer les dépendances
11
  RUN pip install --no-cache-dir -r requirements.txt
12
 
@@ -14,4 +17,5 @@ RUN pip install --no-cache-dir -r requirements.txt
14
  EXPOSE 7860
15
 
16
  # Commande pour démarrer Flask
17
- CMD ["python", "app.py"]
 
 
7
  # Copier les fichiers nécessaires dans le conteneur
8
  COPY . /app
9
 
10
+ # Add segment-anything-2 to PYTHONPATH so `sam2` can be imported
11
+ ENV PYTHONPATH=/app/sam2:$PYTHONPATH
12
+
13
  # Installer les dépendances
14
  RUN pip install --no-cache-dir -r requirements.txt
15
 
 
17
  EXPOSE 7860
18
 
19
  # Commande pour démarrer Flask
20
+ CMD ["python", "app.py"]
21
+