From 93ca5cca4340019912683af874947c0ab81c3b20 Mon Sep 17 00:00:00 2001 From: Robert Adam Date: Tue, 21 May 2024 20:12:25 +0200 Subject: [PATCH] Base image on 24.04 --- .github/workflows/ci.yml | 24 ------------------------ Dockerfile | 2 +- 2 files changed, 1 insertion(+), 25 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ecc86b4..7d7f42a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,30 +5,6 @@ on: [ push, pull_request ] # Note: As of now the strategy property is not supported when using reusable workflows, so we can't use a build # matrix to create the different build cases (see https://docs.github.com/en/actions/using-workflows/reusing-workflows#limitations) jobs: - build_1_4_230: - uses: ./.github/workflows/build_and_publish.yml - with: - mumble_version: "v1.4.230" - docker_version: '0' - publish: false - update_latest: false - platforms: "linux/amd64" - build_1_4_274: - uses: ./.github/workflows/build_and_publish.yml - with: - mumble_version: "v1.4.274" - docker_version: '0' - publish: false - update_latest: false - platforms: "linux/amd64" - build_1_4_287: - uses: ./.github/workflows/build_and_publish.yml - with: - mumble_version: "v1.4.287" - docker_version: '0' - publish: false - update_latest: false - platforms: "linux/amd64" build_1_5_634: uses: ./.github/workflows/build_and_publish.yml with: diff --git a/Dockerfile b/Dockerfile index 819a5b9..b27aeb8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:20.04 as base +FROM ubuntu:24.04 as base ARG DEBIAN_FRONTEND=noninteractive RUN apt-get update && apt-get install --no-install-recommends -y \