From 7d82107240ad125b308c183103b06137b07339bb Mon Sep 17 00:00:00 2001 From: Daniel Gospodinow Date: Sun, 18 Feb 2024 11:46:49 +0000 Subject: [PATCH] Change entrypoint command in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 498febc..175403e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,4 +6,4 @@ WORKDIR /github/workspace RUN go install go.uber.org/nilaway/cmd/nilaway@latest -ENTRYPOINT nilaway ${PACKAGE_TO_SCAN} +ENTRYPOINT ["sh", "-c", "nilaway $PACKAGE_TO_SCAN"]