Skip to content

Commit

Permalink
docker: update boost URL
Browse files Browse the repository at this point in the history
Co-authored-by: Phil Miller <[email protected]>
  • Loading branch information
program-- and PhilMiller committed Jan 25, 2024
1 parent 341c03b commit 3576b76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/ngen.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ RUN dnf update -y \

ARG BOOST_VERSION="1.72.0"
RUN export BOOST_ARCHIVE="boost_$(echo ${BOOST_VERSION} | tr '\.' '_').tar.gz" \
&& export BOOST_URL="https://boostorg.jfrog.io/artifactory/main/release/${BOOST_VERSION}/source/${BOOST_ARCHIVE}" \
&& export BOOST_URL="https://sourceforge.net/projects/boost/files/boost/${BOOST_VERSION}/${BOOST_ARCHIVE}/download" \
&& cd / \
&& curl -L -O "${BOOST_URL}" \
&& curl -L -o "${BOOST_ARCHIVE}" "${BOOST_URL}" \
&& tar -xzf "${BOOST_ARCHIVE}" \
&& rm ${BOOST_ARCHIVE}

Expand Down

0 comments on commit 3576b76

Please sign in to comment.