From e17c3ad92c5ac37750aa2546a92e26ab95fce12c Mon Sep 17 00:00:00 2001 From: Aarni Halinen Date: Fri, 22 Jul 2022 00:52:04 +0300 Subject: [PATCH] Add --without-hashes to poetry export in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a4c7fb4..75c5566 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 > requirements.txt +RUN poetry export --without-hashes > requirements.txt FROM python:3.9-slim-buster as server