Skip to content

Commit

Permalink
install boost as pre-req in Docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
davehorton committed Nov 7, 2024
1 parent 60178e8 commit 0373314
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ ARG DETECTED_TAG=main

RUN apt-get update \
&& apt-get -y --quiet --force-yes upgrade \
&& apt-get install -y --no-install-recommends ca-certificates gcc g++ make build-essential cmake git autoconf automake curl libtool libtool-bin libssl-dev libcurl4-openssl-dev zlib1g-dev libgoogle-perftools-dev jq \
&& apt-get install -y --no-install-recommends ca-certificates gcc g++ make build-essential \
&& cmake git autoconf automake curl libtool libtool-bin libssl-dev libcurl4-openssl-dev zlib1g-dev \
&& libgoogle-perftools-dev jq libboost-all-dev \
&& git clone --depth=50 https://github.com/drachtio/drachtio-server.git /usr/local/src/drachtio-server \
&& cd /usr/local/src/drachtio-server \
&& git fetch --tags \
Expand Down

0 comments on commit 0373314

Please sign in to comment.