Skip to content

Commit 043498b

Browse files
author
Markus Perl
committed
Ubuntu 24.04
1 parent 2ca2b9b commit 043498b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/build.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
build-linux:
1212
name: build in native linux
13-
runs-on: ubuntu-22.04
13+
runs-on: ubuntu-24.04
1414
steps:
1515
- name: Checkout code
1616
uses: actions/checkout@v4
@@ -59,19 +59,19 @@ jobs:
5959
6060
build-docker:
6161
name: build in docker
62-
runs-on: ubuntu-22.04
62+
runs-on: ubuntu-24.04
6363
steps:
6464
- name: Checkout code
6565
uses: actions/checkout@v4
6666

6767
- name: pull base image
6868
id: ubuntu_pull
6969
run: |
70-
docker pull ubuntu:22.04
70+
docker pull ubuntu:24.04
7171
- name: run if ubuntu_pull failed
7272
if: failure() && steps.ubuntu_pull.outcome == 'failure'
7373
run: |
74-
docker pull ubuntu:22.04
74+
docker pull ubuntu:24.04
7575
- name: build ffmpeg
7676
run: |
7777
docker build -t ffmpeg:ubuntu -f Dockerfile .

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:22.04 AS build
1+
FROM ubuntu:24.04 AS build
22

33
ENV DEBIAN_FRONTEND noninteractive
44

@@ -13,7 +13,7 @@ COPY ./build-ffmpeg /app/build-ffmpeg
1313

1414
RUN SKIPINSTALL=yes /app/build-ffmpeg --build
1515

16-
FROM ubuntu:22.04
16+
FROM ubuntu:24.04
1717

1818
ENV DEBIAN_FRONTEND noninteractive
1919

cuda-ubuntu.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG CUDAVER=12.2.2
2-
ARG UBUNTUVER=22.04
2+
ARG UBUNTUVER=24.04
33

44
FROM nvidia/cuda:${CUDAVER}-devel-ubuntu${UBUNTUVER} AS build
55

full-static.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:22.04 AS build
1+
FROM ubuntu:24.04 AS build
22

33
ENV DEBIAN_FRONTEND=noninteractive
44
ENV NVIDIA_VISIBLE_DEVICES=all

0 commit comments

Comments
 (0)