This is an automated email from the ASF dual-hosted git repository.
asorokoumov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/otava.git
The following commit(s) were added to refs/heads/master by this push:
new 3b164fb Use Poetry 1.8.3 in Docker image (#41)
3b164fb is described below
commit 3b164fb10ca7083333827689c04ae9c5acd78351
Author: Alex Sorokoumov <[email protected]>
AuthorDate: Wed Apr 2 18:11:21 2025 -0700
Use Poetry 1.8.3 in Docker image (#41)
---
Dockerfile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Dockerfile b/Dockerfile
index 1fafa67..0ce67e5 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -37,7 +37,7 @@ RUN apt-get update --assume-yes && \
&& rm -rf /var/lib/apt/lists/*
# Get poetry package
-RUN curl -sSL https://install.python-poetry.org | python3 - --version 1.1.13
+RUN curl -sSL https://install.python-poetry.org | python3 - --version 1.8.3
# Adding poetry to PATH
ENV PATH="/root/.local/bin/:$PATH"