From e890ee84772880e3edebcf7807966537d4ac1332 Mon Sep 17 00:00:00 2001 From: Alejandro Lembke Barrientos Date: Wed, 24 Jul 2024 05:40:41 +0000 Subject: [PATCH] Trying to fix build issue. Updating to version 0.0.4 --- Dockerfile | 9 +++++++-- README.md | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index dbbf309..9f4bcfa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,12 +21,17 @@ RUN apk add --no-cache \ bison \ gperf \ ruby \ - perl + perl \ + # Instalar Python 2 + python2 \ + # Crear un enlace simbólico para asegurar que Python 2 sea accesible como 'python' + && ln -s /usr/bin/python2 /usr/bin/python # Compilar qtwebkit desde el código fuente RUN git clone https://github.com/qt/qtwebkit.git \ && cd qtwebkit \ - && cmake . -DPORT=Qt \ + # Especificar explícitamente el uso de Python 2 para la configuración + && cmake . -DPORT=Qt -DPYTHON_EXECUTABLE=/usr/bin/python2 \ && make \ && make install diff --git a/README.md b/README.md index f3d3f66..d18477c 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ # Scribus Docker Image -### version 0.0.3 \ No newline at end of file +### version 0.0.4 \ No newline at end of file