Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion arch/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ RUN pacman -Sy --noconfirm \
extra/openjpeg2 \
extra/tk \
gcc \
ghostscript \
git \
make \
mesa-libgl \
Expand All @@ -41,6 +40,12 @@ RUN cd /depends \
&& ./install_imagequant.sh \
&& ./install_raqm.sh

RUN wget -q https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs10051/ghostscript-10.05.1.tar.gz \
&& tar -xzf ghostscript-10.05.1.tar.gz \
&& cd ghostscript-10.05.1 \
&& CFLAGS="-std=gnu17" ./configure --without-x \
&& make install

ARG PIP_DISABLE_PIP_VERSION_CHECK=1
ARG PIP_NO_CACHE_DIR=1

Expand Down