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