From a3a65647766bf8da2af1238913f31a0f28be5f2c Mon Sep 17 00:00:00 2001 From: Genva Date: Mon, 16 Jun 2025 16:34:12 +0200 Subject: [PATCH] fix executable parameter --- src/licenseGen/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/licenseGen/Dockerfile b/src/licenseGen/Dockerfile index 8e9e3de..527ccde 100644 --- a/src/licenseGen/Dockerfile +++ b/src/licenseGen/Dockerfile @@ -14,4 +14,4 @@ FROM bitbetter/api COPY --from=build /licenseGen/bin/Release/net8.0/publish/* /app/ -ENTRYPOINT [ "dotnet", "/app/licenseGen.dll", "--core", "/app/Core.dll", "--executable /app/Api", "--cert", "/cert.pfx" ] +ENTRYPOINT [ "dotnet", "/app/licenseGen.dll", "--core", "/app/Core.dll", "--executable", "/app/Api", "--cert", "/cert.pfx" ]