diff --git a/code/Dockerfile b/code/Dockerfile index 0acf0d8..7a5a754 100644 --- a/code/Dockerfile +++ b/code/Dockerfile @@ -7,6 +7,6 @@ RUN dotnet publish -c Release -o out FROM mcr.microsoft.com/dotnet/runtime:6.0 WORKDIR /app COPY --from=build /app/out . -ENTRYPOINT ["dotnet", "Server.dll"] +ENTRYPOINT ["dotnet", "app.dll"] EXPOSE 3131