generated from Templates/Dotnet_Library
5 lines
117 B
Docker
5 lines
117 B
Docker
FROM mcr.microsoft.com/dotnet/runtime:9.0
|
|
COPY ./TextParser/bin/Release/net9.0/ /app
|
|
WORKDIR /app
|
|
CMD ["TextParser"]
|