diff --git a/docker/build.dockerfile b/docker/build.dockerfile index 612566b..e746703 100644 --- a/docker/build.dockerfile +++ b/docker/build.dockerfile @@ -3,7 +3,7 @@ FROM python:3.10-slim as build-image WORKDIR /root/poetry COPY pyproject.toml poetry.lock /root/poetry/ -RUN pip install poetry --no-cache-dir \ +RUN pip install poetry wheel --no-cache-dir \ && poetry export --without-hashes > requirements.txt ENV VENV_PATH=/opt/venv