modification du container interface admin

replacé apache par next start
This commit is contained in:
Quentin Roussel
2023-04-12 00:54:25 +02:00
parent 52436ee18d
commit 0e8c27e200
6 changed files with 59 additions and 16 deletions

View File

@@ -1,13 +1,10 @@
FROM python:3.8
FROM python:3.8-alpine
#Ne pas créer les fichiers .pyc
ENV PYTHONDONTWRITEBYTECODE=1
#Afficher les logs directement dans le terminal
ENV PYTHONUNBUFFERED=1
#Installation des dépendances de opencv
RUN apt-get update
# Installation des dépendances python
COPY requirements.txt .
RUN python -m pip install -r requirements.txt