Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make progress on the build #6568

Merged
merged 1 commit into from
Nov 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions examples/Dockerfile-imagemagick-dcm.demo
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,19 @@ LABEL org.opencontainers.image.authors="[email protected]"
WORKDIR /polytracker/the_klondike

RUN apt-get update && \
apt-get install -y autoconf autopoint binutils clang cmake fontconfig fonts-dejavu g++ gettext git ghostscript gperf libc++-dev libc++abi-dev libcairo2-dev libde265-dev libfreetype-dev libfontconfig-dev libjpeg-turbo8-dev libheif-dev libhwy-dev libopenjp2-7-dev libpango-1.0-0 libpng-dev libpng16-16 libraqm0 libtiff-dev libtool libbz2-dev locales make nasm pkg-config po4a unzip zip zlib1g-dev && \
apt-get install -y autoconf autopoint binutils cmake fontconfig fonts-dejavu g++ gettext git ghostscript gperf libcairo2-dev libde265-dev libfreetype-dev libfontconfig-dev libjpeg-turbo8-dev libheif-dev libhwy-dev libopenjp2-7-dev libpango-1.0-0 libpng-dev libpng16-16 libraqm0 libtiff-dev libtool libbz2-dev locales make nasm pkg-config po4a unzip zip zlib1g-dev && \
locale-gen en_US.UTF-8

RUN git clone https://github.com/ImageMagick/ImageMagick.git

ENV CXX=clang++
ENV CC=clang

WORKDIR /polytracker/the_klondike/ImageMagick
RUN autoreconf -fiv
RUN ./configure \
RUN polytracker build autoreconf -fiv
RUN polytracker build ./configure \
--prefix="/polytracker/the_klondike/ImageMagick" \
--without-modules \
--disable-shared \
--enable-static \
--disable-docs \
--without-magick-plus-plus \
--without-perl
Expand Down
Loading