-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
5 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
FROM ubuntu:jammy | ||
|
||
LABEL [email protected] | ||
LABEL org.opencontainers.image.description An ubuntu image with imagemagick 7. Copy from this. See README. | ||
|
||
LABEL org.opencontainers.image.description="An ubuntu image with imagemagick 7. Copy from this. See README." | ||
|
||
# Build ImageMagick v7 | ||
# not available in debian yet? | ||
# Borrowed from: https://github.com/dooman87/imagemagick-docker | ||
|
||
ARG IM_VERSION=7.1.1-38 | ||
ARG LIB_HEIF_VERSION=1.18.2 | ||
ARG IM_VERSION=7.1.1-41 | ||
ARG LIB_HEIF_VERSION=1.19.3 | ||
ARG LIB_AOM_VERSION=3.10.0 | ||
ARG LIB_WEBP_VERSION=1.4.0 | ||
ARG LIBJXL_VERSION=0.11.0 | ||
|
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,8 +1,8 @@ | ||
|
||
|
||
docker: | ||
docker build --no-cache -t vpro/debian-im7 . | ||
docker build --no-cache --progress plain -t npo-poms/linux-im7 . | ||
|
||
|
||
test: | ||
docker run -it vpro/debian-im7 | ||
docker run -it npo-poms/linux-im7 |