Dotnet_Executable/Containerfile

5 lines
121 B
Plaintext
Raw Normal View History

2024-11-27 16:30:24 +01:00
FROM mcr.microsoft.com/dotnet/runtime:9.0
2024-11-27 19:20:16 +01:00
COPY ./project_name/bin/Release/net9.0/ /app
2024-11-27 16:30:24 +01:00
WORKDIR /app
CMD ["project_name"]