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:
parent
c11b343f2f
commit
08831bf349
2 changed files with 3 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue