From 1c37f759d01b0d445e1b09c67e468bcc5b53361c Mon Sep 17 00:00:00 2001 From: Dirk Kok Date: Thu, 23 Mar 2023 16:00:03 +0100 Subject: [PATCH] run app executable instead of dotnet this aids diagnostics in production environments. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ee8ba3c5e..ddc7bbfae 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,4 +15,4 @@ FROM base AS final LABEL org.opencontainers.image.source="https://github.com/loic-sharma/BaGet" WORKDIR /app COPY --from=publish /app . -ENTRYPOINT ["dotnet", "BaGet.dll"] +ENTRYPOINT ["./BaGet"]