-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
34 lines (27 loc) · 953 Bytes
/
Copy pathDockerfile
File metadata and controls
34 lines (27 loc) · 953 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
FROM registry.access.redhat.com/ubi10-minimal:latest
# Update the image to get the latest CVE updates
RUN microdnf update -y \
&& microdnf install -y --nodocs \
bash \
curl-minimal \
iproute \
keepalived-2.2.8 \
&& rm /etc/keepalived/keepalived.conf
COPY /skel /
RUN mkdir /licenses
COPY ./licenses /licenses
RUN chmod +x init.sh
CMD ["./init.sh"]
# Build specific labels
LABEL maintainer="Guillaume Abrioux <gabrioux@redhat.com>"
LABEL com.redhat.component="keepalived-container"
LABEL version=2.2.8
LABEL name=rhceph/keepalived-rhel10
LABEL description="Red Hat Ceph Storage keepalived"
LABEL summary="Provides the keepalived on RHEL 10 for Red Hat Ceph Storage."
LABEL io.k8s.display-name="Keepalived on RHEL 10"
LABEL io.k8s.description="Red Hat Ceph Storage keepalived"
LABEL io.openshift.tags="rhceph ceph keepalived"
LABEL cpe=cpe:/a:redhat:ceph_storage:9.1::el9
# Z-stream indicator
LABEL Z-VERSION="9.1z2"