tifig icon indicating copy to clipboard operation
tifig copied to clipboard

How to run it in Alpine ?

Open JulianPorras8 opened this issue 6 years ago • 1 comments

My project is running in prod environment with Alpine docker image node:8.9.4-alpine. The packages scpecified here https://github.com/monostream/tifig#linux most of them are not valid Alpine packages. Do I have to take other instructions into account?

Thanks for all, I ran it in ubuntu and worked perfectly. :+1:

JulianPorras8 avatar Jun 22 '18 15:06 JulianPorras8

Besides core development packages, you also have to install ffmpeg-dev (comes with libavcodec and libswscale), fftw-dev (required by vips) and vips itself, which require you to add edge/testing repository to apk, as described in: https://wiki.alpinelinux.org/wiki/Alpine_Linux_package_management

If you pin the testing repository, you can:

apk install vips-dev@testing

With this I managed to compile and use tifig without any issues.

Caian avatar Jun 29 '18 22:06 Caian