This repository has been archived on 2023-04-11. You can view files and clone it, but cannot push or open issues or pull requests.

7 lines
154 B
Docker
Raw Normal View History

2020-05-09 09:49:52 -04:00
FROM mcr.microsoft.com/dotnet/core/runtime:3.1
2020-05-09 23:40:35 -04:00
COPY bin/Release/netcoreapp3.1/ App/
2020-05-09 09:49:52 -04:00
WORKDIR /App
ENTRYPOINT ["dotnet", "authorizer.dll"]
EXPOSE 7778/tcp