######## Docker build guide
# tools/build-and-pack.sh linux64-only
# sudo docker build -f Dockerfile -t recolic/openxt .

# Requires dotnet-core 5.0.x. dotnet 3.x can not build .net framework project. 
from mcr.microsoft.com/dotnet/sdk:5.0

copy *.tar.gz /tmp
run cd /tmp && tar xvzf openxt*.tar.gz && cp bin/* /usr/bin/
run openxt || echo ""



