From 08f17819d7012a19f174b48d0b0fc20c8713a28a Mon Sep 17 00:00:00 2001 From: George J Padayatti Date: Thu, 21 Sep 2023 15:06:07 +0530 Subject: [PATCH] Fix #171: Startup commands for the application must be updated in dockerfile for production Signed-off-by: George J Padayatti --- resources/docker/production/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/docker/production/Dockerfile b/resources/docker/production/Dockerfile index 8d32858..e1b2a02 100644 --- a/resources/docker/production/Dockerfile +++ b/resources/docker/production/Dockerfile @@ -10,4 +10,4 @@ COPY resources/config/rbac_policy.csv /opt/bb-consent/api/config/ # start API EXPOSE 80 -ENTRYPOINT ["./app/bin/bb-consent-api", "-config", "config-production.json"] +ENTRYPOINT ["./app/bin/bb-consent-api", "start-api", "--config", "config-production.json"]