Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Nov 30, 2022
1 parent 2abbeb7 commit 9c748fa
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,18 @@ RUN pdflatex --version
RUN tlmgr install latexmk
RUN latexmk --version

# QPDF
RUN mkdir /tmp/qpdf \
&& cd /tmp/qpdf \
&& git clone https://github.com/qpdf/qpdf \
&& cd qpdf \
&& cmake -S . -B build -DCMAKE_BUILD_TYPE=RelWithDebInfo \
&& cmake --build build \
&& cmake --install build \
&& export LD_LIBRARY_PATH=/usr/local/lib \
&& ldconfig \
&& qpdf --version

# S3cmd for AWS S3 integration
RUN apt-get install -y s3cmd

Expand Down

0 comments on commit 9c748fa

Please sign in to comment.