feature: Adds production support.

This commit is contained in:
Tera << 8 2024-12-23 22:37:28 -05:00
parent a8bc56ccb5
commit b0b11413fb
Signed by: imterah
GPG key ID: 8FA7DD57BA6CEA37
6 changed files with 46 additions and 3 deletions

View file

@ -1,11 +1,11 @@
#!/usr/bin/env bash
pushd sshbackend
go build .
CGO_ENABLED=0 GOOS=linux go build .
strip sshbackend
popd
pushd dummybackend
go build .
CGO_ENABLED=0 GOOS=linux go build .
strip dummybackend
popd
@ -15,6 +15,6 @@ strip externalbackendlauncher
popd
pushd api
go build .
CGO_ENABLED=0 GOOS=linux go build .
strip api
popd