Initial commit12
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
@@ -8,7 +8,9 @@ WORKDIR /app
|
|
8 |
COPY . /app
|
9 |
|
10 |
# Installer les dépendances
|
11 |
-
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
|
12 |
|
13 |
# Exposer le port 7860 pour le serveur Flask
|
14 |
EXPOSE 7860
|
|
|
8 |
COPY . /app
|
9 |
|
10 |
# Installer les dépendances
|
11 |
+
RUN pip install --no-cache-dir -r requirements.txt\
|
12 |
+
libgl1-mesa-glx \
|
13 |
+
libglib2.0-0
|
14 |
|
15 |
# Exposer le port 7860 pour le serveur Flask
|
16 |
EXPOSE 7860
|