Skip to content

Commit 5d804bc

Browse files
authored
Migrate zlib to Ubuntu 24.04 (#14348)
### Summary This pull request migrates the `zlib` project to use the new `ubuntu-24-04` base image for fuzzing. ### Changes in this PR 1. **`projects/zlib/project.yaml`**: Sets the `base_os_version` property to `"ubuntu-24-04"`. 2. **`projects/zlib/Dockerfile`**: Updates the `FROM` instruction. CC: [email protected], [email protected], [email protected]
1 parent a1c9d71 commit 5d804bc

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

projects/zlib/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#
1515
################################################################################
1616

17-
FROM gcr.io/oss-fuzz-base/base-builder
17+
FROM gcr.io/oss-fuzz-base/base-builder:ubuntu-24-04
1818
RUN apt-get update && apt-get install -y make autoconf automake libtool
1919
RUN git clone --depth 1 -b develop https://github.com/madler/zlib.git
2020
WORKDIR zlib

projects/zlib/project.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
base_os_version: ubuntu-24-04
12
homepage: "https://www.zlib.net/"
23
language: c++
34
primary_contact: "[email protected]"

0 commit comments

Comments
 (0)