From fbb868c2448165ee8d38b7d04f8cee27d24ec50e Mon Sep 17 00:00:00 2001 From: Shiro-Nek0 Date: Thu, 26 Feb 2026 00:19:59 -0300 Subject: [PATCH] dockerfile v2 --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 02ab8a2..28eeb90 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,9 +3,10 @@ FROM python:3.11-slim WORKDIR /app COPY requirements.txt ./ - RUN pip install --no-cache-dir -r requirements.txt -COPY . . +COPY app.py ./ +COPY templates/ ./templates/ +COPY static/ ./static/ CMD ["python", "app.py"] \ No newline at end of file