Dotnet_Library/Containerfile

5 lines
121 B
Plaintext
Raw Permalink Normal View History

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