Trying to fix build issue. Updating to version 0.0.2

This commit is contained in:
Alejandro Lembke Barrientos 2024-07-24 05:19:41 +00:00
parent 74ab45bfc8
commit 0e2fd29ef0
Signed by: aleleba
GPG Key ID: F48D7CDEB47942BD
2 changed files with 16 additions and 5 deletions

View File

@ -8,17 +8,29 @@ RUN apk add --no-cache \
qt5-qtbase-dev \
qt5-qtscript-dev \
qt5-qtsvg-dev \
qt5-qtwebkit-dev \
# qt5-qtwebkit-dev se compilará desde el código fuente, así que se omite aquí
qt5-qtxmlpatterns-dev \
poppler-dev \
cairo-dev \
cups-dev \
python3-dev \
git \
wget
wget \
# Agregar dependencias adicionales necesarias para la compilación de qtwebkit
flex \
bison \
gperf \
ruby \
perl
# Compilar qtwebkit desde el código fuente
RUN git clone https://github.com/qt/qtwebkit.git \
&& cd qtwebkit \
&& cmake . \
&& make \
&& make install
# Descargar e instalar Scribus 1.6.2 desde el código fuente
# Este es un ejemplo hipotético; necesitarás ajustar los comandos según la ubicación actual del código fuente y las instrucciones de compilación
RUN wget https://sourceforge.net/projects/scribus/files/scribus/1.6.2/scribus-1.6.2.tar.xz \
&& tar -xf scribus-1.6.2.tar.xz \
&& cd scribus-1.6.2 \
@ -31,5 +43,4 @@ COPY /root /
# ports and volumes
EXPOSE 3000
VOLUME /config

View File

@ -1,3 +1,3 @@
# Scribus Docker Image
### version 0.0.1
### version 0.0.2