Dotnet_Executable/Containerfile

5 lines
121 B
Plaintext
Raw Permalink Normal View History

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