diff --git a/docker/scripts/install-dependencies.sh b/docker/scripts/install-dependencies.sh index b3049d3..48136b2 100755 --- a/docker/scripts/install-dependencies.sh +++ b/docker/scripts/install-dependencies.sh @@ -14,7 +14,7 @@ function cmakebuild() { cd /tmp -STATIC_PACKAGES="sox fftw python2 netcat-openbsd libsndfile lapack" +STATIC_PACKAGES="sox fftw python3 netcat-openbsd libsndfile lapack" BUILD_PACKAGES="git libsndfile-dev fftw-dev cmake ca-certificates make gcc musl-dev g++ lapack-dev linux-headers" apk add --no-cache $STATIC_PACKAGES diff --git a/docker/scripts/run.sh b/docker/scripts/run.sh index e878d2b..a9034c5 100755 --- a/docker/scripts/run.sh +++ b/docker/scripts/run.sh @@ -16,7 +16,7 @@ _term() { trap _term SIGTERM SIGINT -python2.7 openwebrx.py $@ & +python3 openwebrx.py $@ & child=$! wait "$child"