Updated poetry to 2.0^ and added poetry-plugin-export

This commit is contained in:
João Vitória Silva
2025-01-06 11:30:22 +00:00
parent e72286c200
commit e79ef9c11f
3 changed files with 1209 additions and 389 deletions

1594
backend/poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -34,6 +34,7 @@ garminconnect = "^0.2.24"
websockets = "^14.1"
timezonefinder = "^6.5.5"
psycopg = {extras = ["binary", "pool"], version = "^3.2.3"}
poetry = "^2.0.0"
[build-system]

View File

@@ -23,6 +23,9 @@ WORKDIR /tmp/backend
# Install Poetry
RUN pip install --no-cache-dir poetry
# Add poetry-plugin-export
RUN poetry self add poetry-plugin-export
# Copy pyproject.toml and poetry.lock* files
COPY backend/pyproject.toml backend/poetry.lock* ./