Skip to content

Commit

Permalink
Add cantaloupe with grok processor support
Browse files Browse the repository at this point in the history
  • Loading branch information
joecorall authored Apr 16, 2024
1 parent cab101c commit c1b04c4
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions cantaloupe/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
FROM islandora/cantaloupe:3.2.1

RUN apk add --no-cache \
gcc \
g++ \
cmake \
make \
exiftool \
libjpeg-turbo \
lcms2-dev \
libpng-dev \
zstd-dev \
tiff-dev \
jpeg-dev \
zlib-dev \
libwebp-dev \
&& git clone https://github.com/GrokImageCompression/grok \
&& cd grok \
&& git checkout v12.0.0 \
&& cmake . \
&& make install \
&& apk del \
gcc \
g++ \
cmake \
make \
exiftool \
lcms2-dev \
libpng-dev \
zstd-dev \
tiff-dev \
jpeg-dev \
zlib-dev \
libwebp-dev

0 comments on commit c1b04c4

Please sign in to comment.