Skip to content

Commit

Permalink
Merge branch 'fix_pin_docker_examples' into fix_premature_logging
Browse files Browse the repository at this point in the history
  • Loading branch information
surovic committed Aug 15, 2023
2 parents dbe9ded + 9a24b54 commit 50947c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/Dockerfile-poppler.demo
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM ubuntu:focal AS poppler-sources
WORKDIR /polytracker/the_klondike
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y git
RUN git clone https://anongit.freedesktop.org/git/poppler/poppler.git
RUN git clone --depth=1 --branch poppler-23.06.0 https://anongit.freedesktop.org/git/poppler/poppler.git

# Now, build the qpdf image using previously downloaded source
FROM trailofbits/polytracker:latest
Expand Down
2 changes: 1 addition & 1 deletion examples/Dockerfile-qpdf.demo
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM ubuntu:focal AS qpdf-sources
WORKDIR /polytracker/the_klondike
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y git wget
RUN git clone https://github.com/qpdf/qpdf.git
RUN git clone --depth=1 --branch 11.5 https://github.com/qpdf/qpdf.git
RUN wget http://jpegclub.org/reference/wp-content/uploads/2022/01/jpegsrc.v9e.tar.gz && tar xf jpegsrc.v9e.tar.gz

# Now, build the qpdf image using previously downloaded source
Expand Down

0 comments on commit 50947c8

Please sign in to comment.