diff --git a/Dockerfile b/Dockerfile index 928e67a..14694bc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,6 @@ FROM python:3.11-slim WORKDIR /app +RUN rm -rf /app/* COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt COPY . .