Dotnet_Executable/Containerfile
Simon Diesenreiter a6bae9dc80
All checks were successful
Rename the project from template / rename-project (push) Has been skipped
SonarQube Scan / SonarQube Trigger (push) Has been skipped
CI / linter (9.0.X, ubuntu-latest) (push) Successful in 51s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Successful in 2m51s
bugfixes
2024-11-27 19:44:15 +01:00

5 lines
121 B
Docker

FROM mcr.microsoft.com/dotnet/runtime:9.0
COPY ./project_name/bin/Release/net9.0/ /app
WORKDIR /app
CMD ["project_name"]