From d8c51645bfd29c621b2ed8077cc981ec6a9013e4 Mon Sep 17 00:00:00 2001 From: Ronny Gunawan <3048897+ronnygunawan@users.noreply.github.com> Date: Mon, 2 Dec 2024 18:39:30 +0700 Subject: [PATCH] Change entrypoint --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4e06d3c..23b8671 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,4 +21,4 @@ RUN dotnet publish "BotNet.csproj" -c Release -o /app/publish FROM base AS final WORKDIR /app COPY --from=publish /app/publish . -ENTRYPOINT ["dotnet", "BotNet.dll"] \ No newline at end of file +ENTRYPOINT ["./BotNet"] \ No newline at end of file