1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00

OAS-9904 Switch to ubuntu:24.04 base image (#1702)

This commit is contained in:
jwierzbo 2024-08-25 21:36:59 +02:00 committed by GitHub
parent c11b343f2f
commit 08831bf349
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View file

@ -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

View file

@ -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