Skip to content

Update Dockerfile.master.template: fetch libcgal-dev 5.5.1 from Debian testing in order to build SCFGAL 1.4.1 #336

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

Closed
wants to merge 1 commit into from
Closed
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
10 changes: 6 additions & 4 deletions Dockerfile.master.template
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,14 @@ RUN set -ex \

# sfcgal
ENV SFCGAL_VERSION master
#current:
#ENV SFCGAL_GIT_HASH %%SFCGAL_GIT_HASH%%
#reverted for the last working version
ENV SFCGAL_GIT_HASH e1f5cd801f8796ddb442c06c11ce8c30a7eed2c5
# SCFGAL 1.4.1 tag (latest stable release: needs libcgal-dev >= 5.3)
ENV SFCGAL_GIT_HASH 2d6a1a89552f14fe2926038b7237686bb9e5472e

RUN set -ex \
# Fetch libcgal-dev from Debian testing (sid)
&& echo 'deb http://deb.debian.org/debian testing main' >> /etc/apt/sources.list \
&& apt-get update \
&& apt-get install -y --no-install-recommends libcgal-dev \
&& mkdir -p /usr/src \
&& cd /usr/src \
&& git clone https://gitlab.com/Oslandia/SFCGAL.git \
Expand Down