Base change to archlinux multilib
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Argiris Deligiannidis 2024-02-02 14:26:49 +02:00
parent 2aeef0dbac
commit 2050a427b7

View File

@ -1,11 +1,11 @@
FROM amd64/alpine:3.19 FROM amd64/archlinux:multilib-devel
ARG PYTHON_VERSION=3.11.6 ARG PYTHON_VERSION=3.11.6
ARG PYTHON_URL=https://www.python.org/ftp/python/${PYTHON_VERSION}/python-3.11.7.exe ARG PYTHON_URL=https://www.python.org/ftp/python/${PYTHON_VERSION}/python-3.11.7.exe
ENV WINEDEBUG=fixme-all ENV WINEDEBUG=fixme-all
RUN \ RUN \
apk -U add wine python3==3.11.6-r1 py3-pip python3-dev gfortran build-base py3-numpy python3-tkinter libgfortran libquadmath libgcc gnutls && \ pacman -Sy --noconfirm wget libunwind lib32-gnutls python3 python-pip gcc-fortran base-devel python-numpy python-pandas tk gcc-libs gnutls wine-staging && \
for i in core dev exe lib path pip tcltk tools; do \ 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" ; \ 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 && \ wine msiexec /i "/tmp/python_$i.msi" /qb TARGETDIR=C:/python && \