From 9960a9a44e3cce39bf1317d1ce816047154ccc95 Mon Sep 17 00:00:00 2001 From: Bulat Kurbanov Date: Fri, 8 Apr 2022 12:24:29 +0300 Subject: [PATCH] Add wheel --- docker/production.dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/production.dockerfile b/docker/production.dockerfile index cc33208..d092532 100644 --- a/docker/production.dockerfile +++ b/docker/production.dockerfile @@ -7,7 +7,7 @@ RUN apt-get update \ 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