Skip to content

Commit cb9fa98

Browse files
authored
Migrate astro-compiler to Ubuntu 24.04 (#14389)
### Summary This pull request migrates the `astro-compiler` project to use the new `ubuntu-24-04` base image for fuzzing. ### Changes in this PR 1. **`projects/astro-compiler/project.yaml`**: Sets the `base_os_version` property to `ubuntu-24-04`. 2. **`projects/astro-compiler/Dockerfile`**: Updates the `FROM` instruction. CC: cable023@gmail.com
1 parent a277689 commit cb9fa98

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

projects/astro-compiler/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-go
17+
FROM gcr.io/oss-fuzz-base/base-builder-go:ubuntu-24-04
1818
RUN git clone --depth 1 https://github.com/withastro/compiler.git
1919

2020
RUN go install github.com/AdamKorcz/go-118-fuzz-build@latest

projects/astro-compiler/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://github.com/withastro/compiler"
23
language: go
34
main_repo: "https://github.com/withastro/compiler"

0 commit comments

Comments
 (0)