For the runtime image (node:16-alpine), vips-dev is already being installed, however vips-heif is also required to make the plugin work. Then, the RUN docker statement should look like this:
FROM node:16-alpine
RUN apk add --no-cache vips-dev vips-heif
Adding this issue so it hopefully helps others facing the same problem. Can be closed right away 🙂
Hello, first of all I'd like to thank all the contributors involved in this project. It is great.
I've found an issue with running the plugin in Docker container. During an attempt to transform given asset on request, the following error occurs:
This happens when you build your Strapi Docker image using the following sample production Dockerfile.
For the runtime image (
node:16-alpine
),vips-dev
is already being installed, howevervips-heif
is also required to make the plugin work. Then, theRUN
docker statement should look like this:Adding this issue so it hopefully helps others facing the same problem. Can be closed right away 🙂