We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c10a30 commit 4cc4bb3Copy full SHA for 4cc4bb3
build/Dockerfile.otel
@@ -12,16 +12,17 @@ RUN apt-get update && apt-get install -y \
12
zlib1g-dev \
13
libssl-dev
14
15
-WORKDIR /usr/src/nginx-otel
+WORKDIR /usr/src
16
+
17
RUN wget https://nginx.org/download/nginx-1.27.4.tar.gz && \
18
tar zxvf nginx-1.27.4.tar.gz && \
19
cd nginx-1.27.4 && \
20
./configure --with-compat && \
- cd ..
21
+ make
22
-RUN git clone https://github.com/nginxinc/nginx-otel.git && \
23
- cd nginx-otel && \
24
- mkdir build && \
25
- cd build && \
+RUN git clone https://github.com/nginxinc/nginx-otel.git
+WORKDIR /usr/src/nginx-otel
26
+RUN mkdir build && cd build && \
27
cmake -DNGX_OTEL_NGINX_BUILD_DIR=/usr/src/nginx-1.27.4/objs .. && \
- make
28
0 commit comments