diff --git a/Dockerfile b/Dockerfile index 0c54894..d083080 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,6 +10,9 @@ RUN python -m venv /opt/venv ENV PATH="/opt/venv/bin:$PATH" COPY requirements.txt . + +RUN pip install wheel + RUN pip install -r requirements.txt FROM python:3.10-slim-bullseye