TextParser/Containerfile

5 lines
117 B
Plaintext
Raw Normal View History

2024-12-01 02:13:49 -08:00
FROM mcr.microsoft.com/dotnet/runtime:9.0
2024-12-01 10:26:44 +00:00
COPY ./TextParser/bin/Release/net9.0/ /app
2024-12-01 02:13:49 -08:00
WORKDIR /app
2024-12-01 10:26:44 +00:00
CMD ["TextParser"]