From e8fa78092618cb921d7aa0a03f491a64c30a45e9 Mon Sep 17 00:00:00 2001 From: Benj Fassbind Date: Tue, 17 Jan 2023 08:44:37 +0100 Subject: [PATCH] Fix docker build due to outdated poetry version --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 169e577c8..5f4f1f03a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,7 +28,7 @@ ENV PYTHONDONTWRITEBYTECODE=1 \ RUN apk update && \ apk add gcc musl-dev python3-dev libffi-dev openssl-dev cargo -RUN pip install poetry==1.2.1 +RUN pip install poetry==1.3.2 COPY /docat/pyproject.toml /docat/poetry.lock /app/ # Install the application