DotnetTestLib/Containerfile

5 lines
123 B
Plaintext
Raw Permalink Normal View History

2024-11-27 12:07:20 -08:00
FROM mcr.microsoft.com/dotnet/runtime:9.0
2024-11-27 20:09:05 +00:00
COPY ./DotnetTestLib/bin/Release/net9.0/ /app
2024-11-27 12:07:20 -08:00
WORKDIR /app
2024-11-27 20:09:05 +00:00
CMD ["DotnetTestLib"]