Fix uv-hash in Dockerfile

The provided sha256 hash does not match the hash required for:
"[...]/0.10.12/uv-x86_64-unknown-linux-gnu.tar.gz"
according to the official sha256 sources [here](https://releases.astral.sh/github/uv/releases/download/0.10.12/uv-x86_64-unknown-linux-gnu.tar.gz.sha256)
This commit is contained in:
CyberHD1811
2026-03-28 11:18:46 +01:00
committed by Adrià Casajús
parent 60c0cb981e
commit 8b998ebbd0
+1 -1
View File
@@ -7,7 +7,7 @@ RUN cd /code/static && npm ci
FROM --platform=linux/amd64 ubuntu:22.04
ARG UV_VERSION="0.10.12"
ARG UV_HASH="adccf40b5d1939a5e0093081ec2307ea24235adf7c2d96b122c561fa37711c46"
ARG UV_HASH="ec72570c9d1f33021aa80b176d7baba390de2cfeb1abcbefca346d563bf17484"
# Keeps Python from generating .pyc files in the container
ENV PYTHONDONTWRITEBYTECODE=1