Last active
October 4, 2020 14:40
-
-
Save Watson1978/dbeb913aedd3c8e7b87bd9c8c7524b09 to your computer and use it in GitHub Desktop.
RMagick Issue #1228
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:20.04 | |
RUN apt update && \ | |
apt install -y tzdata && \ | |
apt install -y git pkg-config && \ | |
apt install -y build-essential gcc g++ libx11-dev libxext-dev zlib1g-dev \ | |
liblcms2-dev libpng-dev libjpeg-dev libfreetype6-dev libxml2-dev \ | |
libtiff5-dev libwebp-dev gsfonts ghostscript wget | |
RUN wget https://imagemagick.org/download/releases/ImageMagick-7.0.10-32.tar.xz && \ | |
tar -xf ImageMagick-7.0.10-32.tar.xz && \ | |
cd ImageMagick-7.0.10-32 && \ | |
./configure && \ | |
make -j 2 install | |
RUN apt install -y ruby ruby-dev && \ | |
gem install bundler | |
WORKDIR /opt/rmagick |
Author
Watson1978
commented
Sep 27, 2020
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment