diff --git a/Dockerfile b/Dockerfile index e64e762..92aa547 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM python:3.12-slim WORKDIR /app COPY requirements.txt . -RUN pop install --no-cache-dir -r requirements.txt +RUN pip install --no-cache-dir -r requirements.txt COPY app/ ./app/