mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-16 09:37:08 +00:00
30380b64e3
The official, signed AppImage will be build locally for now for security of my key, but I still want it to be built in a clean, controlled environment based off a suitably old Linux distribution for maximal portability in the AppImage.
12 lines
340 B
Docker
12 lines
340 B
Docker
FROM ubuntu:14.04
|
|
RUN apt-get update && \
|
|
apt-get -y install screen autoconf git \
|
|
build-essential zlib1g-dev libjpeg-dev \
|
|
docbook-xsl fop xsltproc \
|
|
imagemagick wget fuse && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
COPY entrypoint /entrypoint
|
|
RUN chmod +x /entrypoint
|
|
ENTRYPOINT [ "/entrypoint" ]
|