Dotnet_Library/Containerfile
Simon Diesenreiter bbfabb2eee
Some checks failed
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) Failing after 54s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Has been skipped
initial commit
2024-11-27 20:44:34 +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"]