fix python url

This commit is contained in:
Lance R. Vick 2024-02-10 02:59:59 -08:00
parent a9e9b89894
commit afee932358
No known key found for this signature in database
GPG key ID: 8E47A1EC35A1551D

View file

@ -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} .