diff --git a/build/egress/Dockerfile b/build/egress/Dockerfile index 130767d3..488b0038 100644 --- a/build/egress/Dockerfile +++ b/build/egress/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM livekit/gstreamer:1.22.5-dev +FROM livekit/gstreamer:1.22.8-dev ARG TARGETPLATFORM @@ -45,7 +45,7 @@ RUN find cmd/server/templates/ -name *.map | xargs rm RUN if [ "$TARGETPLATFORM" = "linux/arm64" ]; then GOARCH=arm64; else GOARCH=amd64; fi && \ CGO_ENABLED=1 GOOS=linux GOARCH=${GOARCH} GO111MODULE=on go build -a -o egress ./cmd/server -FROM livekit/gstreamer:1.22.5-prod +FROM livekit/gstreamer:1.22.8-prod ARG TARGETPLATFORM diff --git a/build/test/Dockerfile b/build/test/Dockerfile index 1f6c407e..a7341ef9 100644 --- a/build/test/Dockerfile +++ b/build/test/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM livekit/gstreamer:1.22.5-dev +FROM livekit/gstreamer:1.22.8-dev WORKDIR /workspace @@ -48,7 +48,7 @@ RUN if [ "$TARGETPLATFORM" = "linux/arm64" ]; then GOARCH=arm64; else GOARCH=amd CGO_ENABLED=1 GOOS=linux GOARCH=${GOARCH} GO111MODULE=on go test -c -v --tags=integration ./test -FROM livekit/gstreamer:1.22.5-prod +FROM livekit/gstreamer:1.22.8-prod ARG TARGETPLATFORM diff --git a/magefile.go b/magefile.go index aecdccc7..361380df 100644 --- a/magefile.go +++ b/magefile.go @@ -28,7 +28,7 @@ import ( ) const ( - gstVersion = "1.22.5" + gstVersion = "1.22.8" chromiumVersion = "117.0.5874.0" dockerBuild = "docker build" dockerBuildX = "docker buildx build --push --platform linux/amd64,linux/arm64"