Newer
Older
NoteApi / publish.md
@fabre fabre on 6 Jan 346 bytes docker

编译/发布

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