hs-test: fix docker warning message

Type: test

Change-Id: I156b6d9e0759bc7d324ac7d618a195ee5803ca75
Signed-off-by: Adrian Villin <avillin@cisco.com>
This commit is contained in:
Adrian Villin 2024-07-25 13:17:31 +02:00
parent 007be4fa7f
commit 6a8f26c3ab
2 changed files with 5 additions and 2 deletions

View File

@ -7,6 +7,6 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*
COPY resources/nginx/nginx_server_mirroring.conf /nginx.conf
COPY script/nginx_mirroring_entrypoint.sh /usr/bin/nginx_mirroring_entrypoint.sh
ENTRYPOINT nginx -c /nginx.conf
ENTRYPOINT ["nginx_mirroring_entrypoint.sh"]

View File

@ -0,0 +1,3 @@
#!/bin/bash
nginx -c /nginx.conf