fix: install all the pg tools dependencies (#2189)

the Dockerfile still uses python 3.11, causing potential dependency
skips w/ a higher requires-python

Closes STOR-524
This commit is contained in:
Philip Jenvey 2026-04-03 14:44:17 -07:00 committed by GitHub
parent 184de7c52d
commit 6363d68a11
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 5 deletions

View File

@ -130,7 +130,8 @@ RUN apt-get -q update && \
# we have to remove the python3-cryptography package here.
apt-get -q remove -y python3-cryptography 2>/dev/null || true && \
apt-get -q autoremove -y && \
rm -rf /var/lib/apt/lists/*
rm -rf /var/lib/apt/lists/* && \
python3 --version
WORKDIR /app

View File

@ -1,4 +1,4 @@
# This file is automatically @generated by Poetry 2.3.2 and should not be changed by hand.
# This file is automatically @generated by Poetry 2.2.1 and should not be changed by hand.
[[package]]
name = "bandit"
@ -912,5 +912,5 @@ files = [
[metadata]
lock-version = "2.1"
python-versions = ">=3.12"
content-hash = "ff2564478cb7e52d37c7d5ed9b9b4355ea09a35873f2da757b06461255b848b4"
python-versions = ">=3.11"
content-hash = "a725776b43d79d432e3bf150af86f02246a6989ac7bbe297f8799fddd0353d27"

View File

@ -6,7 +6,7 @@ authors = [
{name = "Mozilla"}
]
license = "Mozilla Public License Version 2.0"
requires-python = ">=3.12"
requires-python = ">=3.11"
[tool.poetry]
package-mode = false