Hi all,
I am having issues with running my docker containers, whenever I create a image and try to run a container I get these messages:
The command could not be loaded, possibly because:
- You intended to execute a .NET application:
The application ‘DockerWSSO.dll’ does not exist. - You intended to execute a .NET SDK command:
No .NET SDKs were found.
I have checked the naming conventions and they are correct and I have the required sdk’s. This is the docker file:
FROM mcr.microsoft.com/dotnet/sdk:8.0@sha256:35792ea4ad1db051981f62b313f1be3b46b1f45cadbaa3c288cd0d3056eefb83 AS build-env
WORKDIR /App
Copy everything
COPY . ./
Restore as distinct layers
RUN dotnet restore
Build and publish a release
RUN dotnet publish -c Release -o out
Build runtime image
FROM mcr.microsoft.com/dotnet/aspnet:8.0@sha256:6c4df091e4e531bb93bdbfe7e7f0998e7ced344f54426b7e874116a3dc3233ff
WORKDIR /App
COPY --from=build-env /App/out .
ENTRYPOINT [“dotnet”, “DockerWSSO.dll”]
My DockerWSSO.dll is in “*\repos\DockerWSSO\DockerWSSO\bin\Release\net8.0\publish\DockerWSSO.dll”
I am using .net8.0
Any help would be highly appreciated