
- Libunwind was missing in Dockerfile.nginx, causing some tests to fail. Tests that were temporarily disabled because of that issue are now re-enabled. Type: test Change-Id: I3f544be483784e8a7a1f22737cafca615b9f836b Signed-off-by: Adrian Villin <avillin@cisco.com>
21 lines
492 B
Nginx Configuration File
21 lines
492 B
Nginx Configuration File
ARG UBUNTU_VERSION
|
|
|
|
FROM ubuntu:${UBUNTU_VERSION}
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y nginx gdb less libunwind-dev \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY vpp-data/lib/* /usr/lib/
|
|
COPY resources/nginx/vcl.conf /vcl.conf
|
|
COPY resources/nginx/nginx.conf /nginx.conf
|
|
COPY script/nginx_ldp.sh /usr/bin/nginx_ldp.sh
|
|
|
|
ENV VCL_CONFIG=/vcl.conf
|
|
ENV LDP=/usr/lib/libvcl_ldpreload.so
|
|
ENV LDP_DEBUG=0
|
|
ENV VCL_DEBUG=0
|
|
ENV LDP_SID_BIT=8
|
|
|
|
ENTRYPOINT ["nginx_ldp.sh", "nginx", "-c", "/nginx.conf"]
|