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

BLD: Fix the base FLINT Docker build #113

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
4 changes: 2 additions & 2 deletions Examples/docker/Dockerfile.base.ubuntu.18.04
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ RUN apt-get update -y && apt-get install -y \
# set versions of libraries used and some paths
ENV ROOTDIR /usr/local/
ENV GDAL_VERSION 2.4.0
ENV CMAKE_VERSION 3.14.3
ENV CMAKE_VERSION 3.15.0
ENV POCO_VERSION 1.9.0
ENV BOOST_VERSION 1_69_0
ENV BOOST_VERSION_DOT 1.69.0
Expand Down Expand Up @@ -90,7 +90,7 @@ RUN cd src && tar -xzf poco-${POCO_VERSION}.tar.gz && cd poco-${POCO_VERSION} \
&& cd $ROOTDIR

## Boost
ADD https://dl.bintray.com/boostorg/release/${BOOST_VERSION_DOT}/source/boost_${BOOST_VERSION}.tar.bz2 $ROOTDIR/src/
ADD https://boostorg.jfrog.io/artifactory/main/release/${BOOST_VERSION_DOT}/source/boost_${BOOST_VERSION}.tar.bz2 $ROOTDIR/src/
RUN cd src && tar --bzip2 -xf boost_${BOOST_VERSION}.tar.bz2 && cd boost_${BOOST_VERSION} \
&& ./bootstrap.sh --prefix=/usr/local \
&& ./b2 -j $NUM_CPU cxxstd=14 install \
Expand Down