From: Harish Venkata Kajur Date: Thu, 11 Apr 2019 18:55:36 +0000 (-0400) Subject: Correct Dockerfile missing command instruction X-Git-Tag: 4.0.0-ONAP~1 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=8eea516732e6fa5987a06979221f2b9cf34586a1;p=aai%2Faai-common.git Correct Dockerfile missing command instruction Issue-ID: AAI-2235 Change-Id: I3d945e33bb5176a993ce001ebbe5ff0ebf639cdd Signed-off-by: Harish Venkata Kajur --- diff --git a/Dockerfiles/haproxy/Dockerfile b/Dockerfiles/haproxy/Dockerfile index d771231e..f6d6c283 100644 --- a/Dockerfiles/haproxy/Dockerfile +++ b/Dockerfiles/haproxy/Dockerfile @@ -27,4 +27,6 @@ COPY haproxy.cfg /usr/local/etc/haproxy/haproxy.cfg RUN chmod +x /docker-entrypoint.sh +ENTRYPOINT [ "/docker-entrypoint.sh" ] +CMD [ "haproxy", "-f", "/usr/local/etc/haproxy/haproxy.cfg", "-f", "/usr/local/etc/haproxy/resolvers.conf" ] EXPOSE 8443