Add exiftool as a component tool for workhorse

This commit is contained in:
DJ Mountney 2023-04-07 01:02:09 +00:00 committed by Stan Hu
parent 4c57027790
commit e48a60a78d
9 changed files with 762 additions and 2 deletions

View file

@ -76,6 +76,13 @@ ARG GRAPHISMAGICK_DOWNLOAD_SHA256
RUN if [ -n "$GRAPHISMAGICK_VERSION" ]; then /scripts/install-graphicsmagick && gm version; fi
# Exiftool
ARG EXIFTOOL_VERSION
ARG EXIFTOOL_DOWNLOAD_URL=https://gitlab.com/gitlab-org/build/omnibus-mirror/exiftool/-/archive/${EXIFTOOL_VERSION}/exiftool-${EXIFTOOL_VERSION}.tar.gz
ARG EXIFTOOL_DOWNLOAD_SHA256
RUN if [ -n "$EXIFTOOL_VERSION" ]; then /scripts/install-exiftool && exiftool -ver; fi
# Docker
ARG DOCKER_VERSION