Skip to content

Commit 08831bf

Browse files
authored
OAS-9904 Switch to ubuntu:24.04 base image (#1702)
1 parent c11b343 commit 08831bf

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
- (Feature) Add ArangoDeployment ServerGroupType
1111
- (Feature) ServerGroup Pointer
1212
- (Feature) Envoy AuthV3 Integration
13+
- (Maintenance) Switch to ubuntu:24.04 base image
1314

1415
## [1.2.42](https://github.com/arangodb/kube-arangodb/tree/1.2.42) (2024-07-23)
1516
- (Maintenance) Go 1.22.4 & Kubernetes 1.29.6 libraries

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG IMAGE=alpine:3.17
1+
ARG IMAGE=ubuntu:24.04
22
ARG ENVOY_IMAGE=envoyproxy/envoy:v1.31.0
33

44
# Build Steps
@@ -7,7 +7,7 @@ FROM ${ENVOY_IMAGE} AS envoy
77

88
FROM ${IMAGE} AS base
99

10-
RUN apk upgrade --no-cache
10+
RUN apt-get update && apt-get upgrade -y && apt-get clean
1111

1212
FROM base
1313

0 commit comments

Comments
 (0)