DotnetTestLib/Containerfile
2024-11-27 20:09:05 +00:00

5 lines
123 B
Docker

FROM mcr.microsoft.com/dotnet/runtime:9.0
COPY ./DotnetTestLib/bin/Release/net9.0/ /app
WORKDIR /app
CMD ["DotnetTestLib"]