From 3ace5f6c8326037c69daa82e9511222fbe6ba688 Mon Sep 17 00:00:00 2001 From: admin Date: Tue, 8 Sep 2026 15:34:08 +0000 Subject: [PATCH] Update Dockerfile --- Dockerfile | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3093e89..f3dada4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,13 @@ -Code -+ -Requirements -+ -Instructions -= -Docker Image \ No newline at end of file +FROM python:3.11-slim + +WORKDIR /app + +COPY requirements.txt + +RUN pip install --no-cache-dir -r requirements.txt + +COPY.. + +EXPOSE 5000 + +CMD ["python", "app.py"] \ No newline at end of file