From afee932358aaa79f257a059fb2125e71cdc96961 Mon Sep 17 00:00:00 2001 From: "Lance R. Vick" Date: Sat, 10 Feb 2024 02:59:59 -0800 Subject: [PATCH] fix python url --- src/core/python/Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/python/Containerfile b/src/core/python/Containerfile index 8744748..e1cc892 100644 --- a/src/core/python/Containerfile +++ b/src/core/python/Containerfile @@ -2,7 +2,7 @@ FROM scratch as base ENV VERSION=3.12.0 ENV SRC_HASH=795c34f44df45a0e9b9710c8c71c15c671871524cd412ca14def212e8ccb155d ENV SRC_FILE=Python-${VERSION}.tar.xz -ENV SRC_SITE=https://www.python.org/ftp/python/${SRC_FILE} +ENV SRC_SITE=https://www.python.org/ftp/python/${SRC_VERSION}/${SRC_FILE} FROM base as fetch ADD --checksum=sha256:${SRC_HASH} ${SRC_SITE} .