We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e4aac6 commit 81211adCopy full SHA for 81211ad
arch/Dockerfile
@@ -22,7 +22,6 @@ RUN pacman -Sy --noconfirm \
22
extra/openjpeg2 \
23
extra/tk \
24
gcc \
25
- ghostscript \
26
git \
27
make \
28
mesa-libgl \
@@ -41,6 +40,12 @@ RUN cd /depends \
41
40
&& ./install_imagequant.sh \
42
&& ./install_raqm.sh
43
+RUN wget -q https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs10051/ghostscript-10.05.1.tar.gz \
44
+ && tar -xzf ghostscript-10.05.1.tar.gz \
45
+ && cd ghostscript-10.05.1 \
46
+ && CFLAGS="-std=gnu17" ./configure --without-x \
47
+ && make install
48
+
49
ARG PIP_DISABLE_PIP_VERSION_CHECK=1
50
ARG PIP_NO_CACHE_DIR=1
51
0 commit comments