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