diff --git a/build_publish_docker.sh b/build_publish_docker.sh index 3400eba..44fa4a1 100644 --- a/build_publish_docker.sh +++ b/build_publish_docker.sh @@ -14,7 +14,7 @@ docker build . -f Dockerfile_plain \ -t frapasa/rept:$major.$minor.$patch > /dev/null echo "Pushing plain image..." -docker image push --all-tags frapasa/rept +# docker image push --all-tags frapasa/rept echo "Building debian image..." docker build . -f Dockerfile_debian \ @@ -24,6 +24,6 @@ docker build . -f Dockerfile_debian \ -t frapasa/rept:$major.$minor.$patch-buster > /dev/null echo "Pushing debian image..." -docker image push --all-tags frapasa/rept +# docker image push --all-tags frapasa/rept echo "Success!" diff --git a/main.go b/main.go index bacca3f..fec0a74 100644 --- a/main.go +++ b/main.go @@ -27,6 +27,10 @@ func main() { err := Run(os.Args) if err != nil { fmt.Println(err) + } else { + for { + // keep running - otherwise we will have orphan goroutines + } } }