From bf6b52271e340472e3cab168c6b8ffc86e3e7d8c Mon Sep 17 00:00:00 2001 From: Argiris Deligiannidis Date: Fri, 2 Feb 2024 12:41:50 +0200 Subject: [PATCH] update image --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 02739e7..ef483a2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ -FROM amd64/alpine:latest +FROM amd64/alpine:3.19 ARG PYTHON_VERSION=3.11.7 ARG PYTHON_URL=https://www.python.org/ftp/python/${PYTHON_VERSION}/python-3.11.7.exe ENV WINEDEBUG=fixme-all RUN \ - apk -U add wine python3 py3-pip python3-dev gfortran build-base py3-numpy python3-tkinter libgfortran libquadmath libgcc gnutls && \ + apk -U add wine python3==3.11.6-r1 py3-pip python3-dev gfortran build-base py3-numpy python3-tkinter libgfortran libquadmath libgcc gnutls && \ for i in core dev exe lib path pip tcltk tools; do \ wget -O "/tmp/python_$i.msi" -c "https://www.python.org/ftp/python/${PYTHON_VERSION}/win32/$i.msi" ; \ wine msiexec /i "/tmp/python_$i.msi" /qb TARGETDIR=C:/python && \