xref: /imagick/docker/repro/README.md (revision 6ce81ebf)
1Repro box is up.
2
3Probably run 'ldconfig /usr/local/lib' so that you can run command line
4programs like 'convert -list font' to check if ImageMagick can find fonts.
5
6You can bash into the container with:
7
8docker-compose exec repro sh
9
10Then install ImageMagick with configure something like:
11
12
13./configure --with-quantum-depth=16 \
14  --with-magick-plus-plus=no \
15  --without-perl \
16  --disable-docs \
17  --with-jpeg=yes \
18  --with-png=yes \
19  --with-fontconfig=yes \
20  --with-webp=yes \
21  --with-urw-base35-font-dir=/usr/share/fonts/opentype/urw-base35
22
23And so the long day wears on.