Trying to fix issue in build. Updating to version 0.0.5
This commit is contained in:
parent
e890ee8477
commit
34fe5e0db2
20
Dockerfile
20
Dockerfile
@ -22,16 +22,24 @@ RUN apk add --no-cache \
|
|||||||
gperf \
|
gperf \
|
||||||
ruby \
|
ruby \
|
||||||
perl \
|
perl \
|
||||||
# Instalar Python 2
|
libffi-dev \
|
||||||
python2 \
|
openssl-dev \
|
||||||
# Crear un enlace simbólico para asegurar que Python 2 sea accesible como 'python'
|
zlib-dev \
|
||||||
&& ln -s /usr/bin/python2 /usr/bin/python
|
xz \
|
||||||
|
tar
|
||||||
|
|
||||||
|
# Descargar, compilar e instalar Python 2 desde el código fuente
|
||||||
|
RUN wget https://www.python.org/ftp/python/2.7.18/Python-2.7.18.tar.xz && \
|
||||||
|
tar -xf Python-2.7.18.tar.xz && \
|
||||||
|
cd Python-2.7.18 && \
|
||||||
|
./configure --enable-optimizations && \
|
||||||
|
make altinstall && \
|
||||||
|
ln -s /usr/local/bin/python2.7 /usr/bin/python
|
||||||
|
|
||||||
# Compilar qtwebkit desde el código fuente
|
# Compilar qtwebkit desde el código fuente
|
||||||
RUN git clone https://github.com/qt/qtwebkit.git \
|
RUN git clone https://github.com/qt/qtwebkit.git \
|
||||||
&& cd qtwebkit \
|
&& cd qtwebkit \
|
||||||
# Especificar explícitamente el uso de Python 2 para la configuración
|
&& cmake . -DPORT=Qt -DPYTHON_EXECUTABLE=/usr/bin/python2.7 \
|
||||||
&& cmake . -DPORT=Qt -DPYTHON_EXECUTABLE=/usr/bin/python2 \
|
|
||||||
&& make \
|
&& make \
|
||||||
&& make install
|
&& make install
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user