-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #186 from target/versioning-and-references
Versioning and references
- Loading branch information
Showing
12 changed files
with
395 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
FROM ubuntu:20.04 | ||
FROM ubuntu:21.10 | ||
ARG DEBIAN_FRONTEND=noninteractive | ||
LABEL maintainer="Target Brands, Inc. [email protected]" | ||
|
||
ARG YARA_VERSION=4.0.5 | ||
ARG YARA_PYTHON_VERSION=4.0.3 | ||
ARG CAPA_VERSION=1.1.0 | ||
ARG YARA_VERSION=4.1.3 | ||
ARG YARA_PYTHON_VERSION=4.1.3 | ||
ARG CAPA_VERSION=3.0.1 | ||
ARG EXIFTOOL_VERSION=12.36 | ||
|
||
# Update packages | ||
RUN apt-get -qq update && \ | ||
|
@@ -37,9 +38,9 @@ RUN apt-get -qq update && \ | |
jq && \ | ||
# Download and compile exiftool | ||
cd /tmp/ && \ | ||
curl -OL https://exiftool.org/Image-ExifTool-12.30.tar.gz && \ | ||
tar -zxvf Image-ExifTool-12.30.tar.gz && \ | ||
cd Image-ExifTool-12.30/ && \ | ||
curl -OL https://github.com/exiftool/exiftool/archive/refs/tags/$EXIFTOOL_VERSION.tar.gz && \ | ||
tar -zxvf $EXIFTOOL_VERSION.tar.gz && \ | ||
cd exiftool-$EXIFTOOL_VERSION/ && \ | ||
perl Makefile.PL && \ | ||
make && \ | ||
make install && \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.