Skip to content

Commit

Permalink
Merge pull request #3 from rnburn/master
Browse files Browse the repository at this point in the history
Fix link in Dockerfile.
  • Loading branch information
rnburn authored Oct 25, 2017
2 parents 3f66e33 + dbf30ec commit 00c360a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ RUN set -x \
&& git clone https://github.com/opentracing/opentracing-cpp.git \
&& cd opentracing-cpp \
&& mkdir .build && cd .build \
&& cmake -DCMAKE_BUILD_TYPE=Release .. \
&& cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=OFF .. \
&& make && make install \
&& cd "$tempDir" \
## Build zipkin-cpp-opentracing
&& apt-get --no-install-recommends --no-install-suggests -y install libcurl4-gnutls-dev \
&& git clone https://github.com/rnburn/zipkin-cpp-opentracing.git \
&& cd zipkin-cpp-opentracing \
&& mkdir .build && cd .build \
&& cmake -DBUILD_SHARED_LIBS=1 -DCMAKE_BUILD_TYPE=Release .. \
&& cmake -DBUILD_SHARED_LIBS=1 -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=OFF .. \
&& make && make install \
&& cd "$tempDir" \
### Build gRPC
Expand All @@ -64,11 +64,11 @@ RUN set -x \
&& git clone https://github.com/lightstep/lightstep-tracer-cpp.git \
&& cd lightstep-tracer-cpp \
&& mkdir .build && cd .build \
&& cmake -DBUILD_SHARED_LIBS=1 -DCMAKE_BUILD_TYPE=Release .. \
&& cmake -DBUILD_SHARED_LIBS=1 -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=OFF .. \
&& make && make install \
&& cd "$tempDir" \
### Get nginx-opentracing source
&& git clone -b dymod https://github.com/rnburn/nginx-opentracing.git \
&& git clone https://github.com/opentracing-contrib/nginx-opentracing.git \
## Build nginx-opentracing modules
&& NGINX_VERSION=`nginx -v 2>&1` && NGINX_VERSION=${NGINX_VERSION#*nginx/} \
&& echo "deb-src http://nginx.org/packages/mainline/debian/ stretch nginx" >> /etc/apt/sources.list \
Expand Down

0 comments on commit 00c360a

Please sign in to comment.