From 072bb04e60cd00d9fa8826c198589073b90d1aff Mon Sep 17 00:00:00 2001 From: Coline Reberga Date: Sun, 16 Mar 2025 10:25:54 +0000 Subject: [PATCH] Supprimer app/Dockerfile --- app/Dockerfile | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 app/Dockerfile diff --git a/app/Dockerfile b/app/Dockerfile deleted file mode 100644 index af7bcac..0000000 --- a/app/Dockerfile +++ /dev/null @@ -1,18 +0,0 @@ -# Basic image from Docker Hub -FROM python:3.9-slim - -# Container working directory settings -WORKDIR /app - -# Copy the requirements file and install Python -COPY requirements.txt . -RUN pip install -r requirements.txt - -# Copy application files to the image -COPY app.py . - -# Expose port 5000 for the Flask application -EXPOSE 5000 - -# Program to run -CMD ["python", "app.py"]