Basic TCP server

This commit is contained in:
2020-05-09 09:49:52 -04:00
parent 51b0e65ad7
commit da26a320b4
5 changed files with 136 additions and 0 deletions

7
authorizer/Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM mcr.microsoft.com/dotnet/core/runtime:3.1
COPY bin/Release/netcoreapp3.1/publish/ App/
WORKDIR /App
ENTRYPOINT ["dotnet", "authorizer.dll"]
EXPOSE 7778/tcp