From 08831bf34985253cb7d360b545d11046d1f9cca6 Mon Sep 17 00:00:00 2001 From: jwierzbo Date: Sun, 25 Aug 2024 21:36:59 +0200 Subject: [PATCH] OAS-9904 Switch to ubuntu:24.04 base image (#1702) --- CHANGELOG.md | 1 + Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a82e71d3..dc68ac940 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ - (Feature) Add ArangoDeployment ServerGroupType - (Feature) ServerGroup Pointer - (Feature) Envoy AuthV3 Integration +- (Maintenance) Switch to ubuntu:24.04 base image ## [1.2.42](https://github.com/arangodb/kube-arangodb/tree/1.2.42) (2024-07-23) - (Maintenance) Go 1.22.4 & Kubernetes 1.29.6 libraries diff --git a/Dockerfile b/Dockerfile index dc08f9e1b..9cfc8a5d8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG IMAGE=alpine:3.17 +ARG IMAGE=ubuntu:24.04 ARG ENVOY_IMAGE=envoyproxy/envoy:v1.31.0 # Build Steps @@ -7,7 +7,7 @@ FROM ${ENVOY_IMAGE} AS envoy FROM ${IMAGE} AS base -RUN apk upgrade --no-cache +RUN apt-get update && apt-get upgrade -y && apt-get clean FROM base