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
162 B
Docker
Raw Normal View History

2020-05-09 09:49:52 -04:00
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