diff options
author | Filip Tehlar <ftehlar@cisco.com> | 2023-01-16 10:21:29 +0100 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2023-01-16 20:51:09 +0000 |
commit | f34f32f31925cba0ed8ef034184e0de1c7398487 (patch) | |
tree | 36695e68a76b240f70914dd3a3100971c7a3c2b5 /extras/hs-test/docker/Dockerfile.nginx | |
parent | 3f951433b89df4639bb2ae8f297aee90c70cebf5 (diff) |
hs-test: better directory structure
Move config files to resources and docker files to separate directory
Type: test
Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
Change-Id: I24dd0705c4a463c06de525f28cb54d882527320a
Diffstat (limited to 'extras/hs-test/docker/Dockerfile.nginx')
-rw-r--r-- | extras/hs-test/docker/Dockerfile.nginx | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/extras/hs-test/docker/Dockerfile.nginx b/extras/hs-test/docker/Dockerfile.nginx new file mode 100644 index 00000000000..930151fefef --- /dev/null +++ b/extras/hs-test/docker/Dockerfile.nginx @@ -0,0 +1,16 @@ +ARG UBUNTU_VERSION + +FROM ubuntu:${UBUNTU_VERSION} + +RUN apt-get update +RUN apt-get install -y nginx +RUN 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 + +ENV VCL_CONFIG=/vcl.conf +ENV LD_PRELOAD=/usr/lib/libvcl_ldpreload.so + +ENTRYPOINT ["nginx", "-c", "/nginx.conf"] |