From 366e4a9b0754bfea95a0f96fa118eb0ababe1d16 Mon Sep 17 00:00:00 2001 From: Antony Messerli Date: Sun, 4 Aug 2024 10:02:45 -0500 Subject: [PATCH] Bump builder to 24.04, bump ansible --- .github/workflows/builder.yml | 2 +- Dockerfile | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/builder.yml b/.github/workflows/builder.yml index 4f0e464..3f6a363 100644 --- a/.github/workflows/builder.yml +++ b/.github/workflows/builder.yml @@ -24,7 +24,7 @@ jobs: password: ${{ secrets.GHCR_TOKEN }} - name: Build and push image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: push: true platforms: linux/amd64,linux/arm64 diff --git a/Dockerfile b/Dockerfile index ed74899..6835863 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ -FROM ubuntu:22.04 +FROM ubuntu:24.04 ENV DEBIAN_FRONTEND=noninteractive # renovate: datasource=pypi depName=ansible -ARG ANSIBLE_VERSION=9.6.0 +ARG ANSIBLE_VERSION=10.2.0 RUN \ apt-get update && \ @@ -26,4 +26,6 @@ RUN \ python3-setuptools \ toilet +RUN rm -rf /usr/lib/python3.12/EXTERNALLY-MANAGED + RUN pip3 install ansible==${ANSIBLE_VERSION}