File: Dockerfile

package info (click to toggle)
qpdf 12.3.2-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 72,660 kB
  • sloc: cpp: 59,054; perl: 12,189; ansic: 6,809; sh: 1,231; python: 1,041; xml: 43; makefile: 42
file content (15 lines) | stat: -rw-r--r-- 601 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# This should be based on as old of an Ubuntu LTS as possible while
# supporting the minimum C++ or other requirements.
FROM ubuntu:22.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update
RUN apt-get -y install screen git sudo \
    build-essential pkg-config cmake \
    zlib1g-dev libjpeg-dev libgnutls28-dev \
    python3-sphinx python3-sphinx-rtd-theme \
    libjs-sphinxdoc texlive texlive-latex-extra \
    latexmk tex-gyre imagemagick busybox-static \
    wget fuse && \
    apt-get clean && rm -rf /var/lib/apt/lists/*
COPY --chmod=0755 entrypoint /entrypoint
ENTRYPOINT [ "/entrypoint" ]