From 88b8f8fad029a3c8e8993f29e3cd0a5399f20bcb Mon Sep 17 00:00:00 2001 From: MahdiBM Date: Mon, 6 Jan 2025 15:15:50 +0330 Subject: [PATCH] Use swift/ubuntu noble --- .github/workflows/deploy-penny.yml | 2 +- Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy-penny.yml b/.github/workflows/deploy-penny.yml index 034e94eb..a6e999dc 100644 --- a/.github/workflows/deploy-penny.yml +++ b/.github/workflows/deploy-penny.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest - container: swift:6.0-jammy + container: swift:6.0-noble steps: - name: Checkout diff --git a/Dockerfile b/Dockerfile index ddced0c7..48c9be8e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # ================================ # Build image # ================================ -FROM swift:6.0-jammy as build +FROM swift:6.0-noble as build ARG SWIFT_CONFIGURATION ARG EXEC_NAME @@ -26,7 +26,7 @@ RUN rm -dr .build # ================================ # Run image # ================================ -FROM ubuntu:jammy +FROM ubuntu:noble # Make sure all system packages are up to date, and install only essential packages. RUN export DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true \