Revert "Add --without-hashes to poetry export in Dockerfile"

This reverts commit 3edae7f967.
This commit is contained in:
Aarni Halinen
2022-07-22 00:54:38 +03:00
parent 3edae7f967
commit e12be3c2f6
+1 -1
View File
@@ -5,7 +5,7 @@ COPY . ./
ENV POETRY_VERSION=1.1.13
RUN pip install "poetry==$POETRY_VERSION"
RUN poetry export --without-hashes > requirements.txt
RUN poetry export > requirements.txt
FROM python:3.9-slim-buster as server