Skip to content

Commit

Permalink
avoid ImageMagick beta releases (#117)
Browse files Browse the repository at this point in the history
vintagesucks authored Dec 17, 2023
1 parent 67aed0a commit ec821c3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -167,6 +167,9 @@ RUN ldconfig
# Installed ImageMagick version should match built ImageMagick version
RUN [[ $(dpkg-query -W -f='${Version}' imagemagick) == $(dpkg-deb -f ./binaries/imagemagick_*.deb Version) ]]

# ImageMagick version string should not contain `(Beta)`
RUN [[ ! $(magick -version) =~ "(Beta)" ]]

# Check feature and delegate support
RUN for feature in Modules freetype heic jpeg png raw tiff ; do [[ $(magick -version) =~ $feature ]] ; done

0 comments on commit ec821c3

Please sign in to comment.