You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
389 B
18 lines
389 B
# Définit l'image de base
|
|
FROM python:3.9
|
|
|
|
# Crée le répertoire de travail et le définit comme répertoire courant
|
|
WORKDIR /app
|
|
|
|
# Copie les fichiers du projet dans le conteneur
|
|
COPY . .
|
|
|
|
# Installe les dépendances du projet
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Expose le port utilisé par l'application
|
|
EXPOSE 8000
|
|
|
|
# Démarre l'application
|
|
CMD ["python", "app.py"]
|