chore(deps): update python docker digest to ad26bf2

This commit is contained in:
renovate[bot] 2024-06-08 00:27:57 +00:00 committed by GitHub
parent c8760bb856
commit 620dd31121
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,5 +1,5 @@
# Python 3.11
FROM python@sha256:091e0f5da680e5c972c59cb7eca172141bb6350045b592c284e2fd3bf2916dd9 as build
FROM python@sha256:ad26bf20080f6b43a7f10020201fb95a678445be9040c111e034d86dc0c80d71 as build
# Install OS dependencies
RUN apt-get update && apt-get install -y build-essential curl
@ -18,7 +18,7 @@ RUN /root/.cargo/bin/uv venv /opt/venv && \
/root/.cargo/bin/uv pip install --no-cache -r requirements.txt
# Python 3.11-slim-bookworm app image
FROM python@sha256:fc39d2e68b554c3f0a5cb8a776280c0b3d73b4c04b83dbade835e2a171ca27ef
FROM python@sha256:ad26bf20080f6b43a7f10020201fb95a678445be9040c111e034d86dc0c80d71
# Copy the virtual environment from the previous image
COPY --from=build /opt/venv /opt/venv