Initial commit

This commit is contained in:
Simon Diesenreiter
2024-12-02 03:16:05 -08:00
commit cee2bfcd99
28 changed files with 863 additions and 0 deletions

4
Containerfile Normal file
View File

@@ -0,0 +1,4 @@
FROM mcr.microsoft.com/dotnet/runtime:9.0
COPY ./project_name/bin/Release/net9.0/ /app
WORKDIR /app
CMD ["project_name"]