Skip to content

Commit

Permalink
Merge branch 'main' into twitch-streams
Browse files Browse the repository at this point in the history
  • Loading branch information
frostbyte73 authored Jul 19, 2024
2 parents c355670 + 40456a4 commit a4d2ebe
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-chrome.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ jobs:
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ./build/chrome
file: ./build/chrome/Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-egress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: ./build/egress/Dockerfile
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish-gstreamer-base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push base
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ./build/gstreamer
push: true
Expand All @@ -48,7 +48,7 @@ jobs:
tags: livekit/gstreamer:${{ env.GST_VERSION }}-base-${{ inputs.arch }}

- name: Build and push dev
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ./build/gstreamer
push: true
Expand All @@ -59,7 +59,7 @@ jobs:
tags: livekit/gstreamer:${{ env.GST_VERSION }}-dev-${{ inputs.arch }}

- name: Build and push prod
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ./build/gstreamer
push: true
Expand All @@ -70,7 +70,7 @@ jobs:
tags: livekit/gstreamer:${{ env.GST_VERSION }}-prod-${{ inputs.arch }}

- name: Build and push prod RS
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ./build/gstreamer
push: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: ./build/template/Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: ./build/test/Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion build/chrome/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM ubuntu:22.04
FROM ubuntu:24.04

RUN mkdir /chrome-installer
COPY output/arm64 /chrome-installer/arm64
Expand Down
4 changes: 2 additions & 2 deletions build/egress/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM livekit/gstreamer:1.22.12-dev
FROM livekit/gstreamer:1.24.4-dev

ARG TARGETPLATFORM
ARG TARGETARCH
Expand Down Expand Up @@ -51,7 +51,7 @@ ENV TINI_VERSION v0.19.0
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-${TARGETARCH} /tini
RUN chmod +x /tini

FROM livekit/gstreamer:1.22.12-prod
FROM livekit/gstreamer:1.24.4-prod

ARG TARGETPLATFORM

Expand Down
2 changes: 1 addition & 1 deletion build/gstreamer/Dockerfile-base
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:23.10
FROM ubuntu:24.04

ARG GSTREAMER_VERSION

Expand Down
2 changes: 1 addition & 1 deletion build/gstreamer/Dockerfile-dev
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ COPY compile-rs /
RUN /compile
RUN /compile-rs

FROM ubuntu:23.10
FROM ubuntu:24.04

COPY install-dependencies /

Expand Down
2 changes: 1 addition & 1 deletion build/gstreamer/Dockerfile-prod
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ COPY compile /

RUN /compile

FROM ubuntu:23.10
FROM ubuntu:24.04

RUN apt-get update && \
apt-get dist-upgrade -y && \
Expand Down
2 changes: 1 addition & 1 deletion build/template/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM ubuntu:22.04
FROM ubuntu:24.04

WORKDIR /workspace

Expand Down

0 comments on commit a4d2ebe

Please sign in to comment.