From e12be3c2f6311bac2f78f5d3cafe37e2b299b789 Mon Sep 17 00:00:00 2001 From: Aarni Halinen Date: Fri, 22 Jul 2022 00:54:38 +0300 Subject: [PATCH] Revert "Add --without-hashes to poetry export in Dockerfile" This reverts commit 3edae7f9670caa908be93731d7285e2d4fe1d1f0. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9af0d88..373b416 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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