Skip to content

Commit

Permalink
Merge pull request #197 from sublime-security/cd.exiftool-archive-lib…
Browse files Browse the repository at this point in the history
…rary

Install Archive library for ExifTools
  • Loading branch information
phutelmyer authored Mar 2, 2022
2 parents 8d43aa3 + 7a0c407 commit 7539a6e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build/python/backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,14 @@ RUN apt-get -qq update && \
unrar \
upx \
jq && \
# Download and compile Archive library, needed for exiftool to work best
cd /tmp/ && \
curl -OL https://cpan.metacpan.org/authors/id/P/PH/PHRED/Archive-Zip-1.68.tar.gz && \
tar -xzf Archive-Zip-1.68.tar.gz && \
cd Archive-Zip-1.68/ && \
perl Makefile.PL && \
make && \
make install && \
# Download and compile exiftool
cd /tmp/ && \
curl -OL https://github.com/exiftool/exiftool/archive/refs/tags/$EXIFTOOL_VERSION.tar.gz && \
Expand Down

0 comments on commit 7539a6e

Please sign in to comment.