From 2b80fabeee88ab7d6230d612552a3139c11736c3 Mon Sep 17 00:00:00 2001 From: ash Date: Tue, 31 Mar 2026 08:56:53 +0100 Subject: [PATCH] add copy to dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e06556c..3a27cb1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ 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