Trying to fix build issue. Updating to version 0.0.4

This commit is contained in:
Alejandro Lembke Barrientos 2024-07-24 05:40:41 +00:00
parent 2a986366a6
commit e890ee8477
Signed by: aleleba
GPG Key ID: F48D7CDEB47942BD
2 changed files with 8 additions and 3 deletions

View File

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

View File

@ -1,3 +1,3 @@
# Scribus Docker Image
### version 0.0.3
### version 0.0.4