mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-02 19:49:43 +00:00
12 lines
385 B
Docker
12 lines
385 B
Docker
FROM ubuntu:16.04
|
|
RUN apt-get update && \
|
|
apt-get -y install screen autoconf git sudo \
|
|
build-essential zlib1g-dev libjpeg-dev libgnutls28-dev \
|
|
docbook-xsl fop xsltproc \
|
|
inkscape imagemagick busybox-static wget fuse && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
COPY entrypoint /entrypoint
|
|
RUN chmod +x /entrypoint
|
|
ENTRYPOINT [ "/entrypoint" ]
|