We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c11b343 commit 08831bfCopy full SHA for 08831bf
CHANGELOG.md
@@ -10,6 +10,7 @@
10
- (Feature) Add ArangoDeployment ServerGroupType
11
- (Feature) ServerGroup Pointer
12
- (Feature) Envoy AuthV3 Integration
13
+- (Maintenance) Switch to ubuntu:24.04 base image
14
15
## [1.2.42](https://github.com/arangodb/kube-arangodb/tree/1.2.42) (2024-07-23)
16
- (Maintenance) Go 1.22.4 & Kubernetes 1.29.6 libraries
Dockerfile
@@ -1,4 +1,4 @@
1
-ARG IMAGE=alpine:3.17
+ARG IMAGE=ubuntu:24.04
2
ARG ENVOY_IMAGE=envoyproxy/envoy:v1.31.0
3
4
# Build Steps
@@ -7,7 +7,7 @@ FROM ${ENVOY_IMAGE} AS envoy
7
8
FROM ${IMAGE} AS base
9
-RUN apk upgrade --no-cache
+RUN apt-get update && apt-get upgrade -y && apt-get clean
FROM base
0 commit comments