From c0cd7844c1ae457a45cdebc0fa93a95b611dc4b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnter=20Obiltschnig?= Date: Wed, 6 Sep 2023 09:18:35 +0200 Subject: [PATCH] updated base image to alpine:3.18 --- .github/workflows/ci.yml | 2 +- Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 43af10e..0d21bb3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,7 @@ name: meta-agent-docker-ci on: [push, workflow_dispatch] jobs: docker-build-multiarch: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Checkout diff --git a/Dockerfile b/Dockerfile index 97ca49b..af72f42 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ # # Stage 1: Build # -FROM alpine:3.16 AS buildstage +FROM alpine:3.18 AS buildstage # Install required components for building RUN apk update \ @@ -31,7 +31,7 @@ RUN mkdir -p build \ # # Stage 2: Install # -FROM alpine:3.16 as runstage +FROM alpine:3.18 as runstage RUN apk update \ && apk add \