From aa4e9285aa5892e9e3229762d912fd805762bf56 Mon Sep 17 00:00:00 2001 From: mifi Date: Wed, 23 Jul 2025 23:37:44 -0300 Subject: [PATCH] Update Dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index abc85a6..8479d23 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,8 @@ FROM python:3.11-slim WORKDIR /app -COPY app.py templates/ ./ +COPY app.py ./ +COPY templates/ ./templates/ RUN pip install --no-cache Flask Jinja2 gunicorn