编译/发布
dotnet publish -c Release -r linux-x64 --no-self-contained
docker build -t noteapi:latest .
docker save noteapi:latest | gzip > noteapi.tar.gz
复原
dotnet publish -c Release -r linux-x64 --no-self-contained
docker build -t noteapi:latest .
docker save noteapi:latest | gzip > noteapi.tar.gz