
- added Dockerfile.envoy - removed nginx vcl.conf file as it's created by the framework now Type: test Change-Id: I5f2be015c864c8d2aa938a22b1abece64989999b Signed-off-by: Adrian Villin <avillin@cisco.com>
20 lines
462 B
Nginx Configuration File
20 lines
462 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/nginx.conf /nginx.conf
|
|
COPY script/nginx_ldp.sh /usr/bin/nginx_ldp.sh
|
|
|
|
ENV VCL_CONFIG=/tmp/nginx/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"]
|