ARG UBUNTU_VERSION=22.04

FROM ubuntu:${UBUNTU_VERSION}

RUN apt-get update \
 && apt-get install -y nginx gdb less libunwind-dev \
 && rm -rf /var/lib/apt/lists/*

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

# copy vpp-data last to take advantage of caching (do not change)
COPY vpp-data/lib/* /usr/lib/

ENTRYPOINT ["nginx_ldp.sh", "nginx", "-c", "/nginx.conf"]