Skip to content

Commit

Permalink
Update the base image for our ponyc images (#4515)
Browse files Browse the repository at this point in the history
Our Docker images have had their base image updated from Ubuntu 22.04
to Ubuntu 24.04.
  • Loading branch information
SeanTAllen authored May 1, 2024
1 parent d411ed9 commit f6272f6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .dockerfiles/latest/x86-64-unknown-linux-gnu/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:22.04
FROM ubuntu:24.04

ENV PATH "/root/.local/share/ponyup/bin:$PATH"

Expand All @@ -9,7 +9,7 @@ RUN apt-get update \
curl \
g++ \
git \
lsb-core \
lsb-release \
make \
&& rm -rf /var/lib/apt/lists/*

Expand Down
4 changes: 2 additions & 2 deletions .dockerfiles/release/x86-64-unknown-linux-gnu/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:22.04
FROM ubuntu:24.04

ENV PATH "/root/.local/share/ponyup/bin:$PATH"

Expand All @@ -9,7 +9,7 @@ RUN apt-get update \
curl \
g++ \
git \
lsb-core \
lsb-release \
make \
&& rm -rf /var/lib/apt/lists/*

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cloudsmith-package-sychronised.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
build-latest-gnu-docker-image:
if: |
github.event.client_payload.data.repository == 'nightlies' &&
github.event.client_payload.data.name == 'ponyc-x86-64-unknown-linux-ubuntu22.04.tar.gz'
github.event.client_payload.data.name == 'ponyc-x86-64-unknown-linux-ubuntu24.04.tar.gz'
name: Build latest GNU Docker image
runs-on: ubuntu-latest
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
build-release-gnu-docker-image:
if: |
github.event.client_payload.data.repository == 'releases' &&
github.event.client_payload.data.name == 'ponyc-x86-64-unknown-linux-ubuntu22.04.tar.gz'
github.event.client_payload.data.name == 'ponyc-x86-64-unknown-linux-ubuntu24.04.tar.gz'
name: Build release GNU Docker image
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .release-notes/ubuntu24-images.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Update the base image for our ponyc images

Our Docker images have had their base image updated from Ubuntu 22.04 to Ubuntu 24.04.

0 comments on commit f6272f6

Please sign in to comment.