Add wheel

This commit is contained in:
2022-04-08 12:22:26 +03:00
parent d2594716ed
commit 717f366503

View File

@@ -3,7 +3,7 @@ FROM python:3.10-slim as build-image
WORKDIR /root/poetry WORKDIR /root/poetry
COPY pyproject.toml poetry.lock /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 && poetry export --without-hashes > requirements.txt
ENV VENV_PATH=/opt/venv ENV VENV_PATH=/opt/venv