blob: ac305f72b62e7e5242066720d02c93bf087cd15f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
FROM registry.access.redhat.com/ubi8/ubi-minimal:latest
RUN microdnf install --nodocs \
bash \
curl \
iproute \
keepalived-2.1.5 \
&& rm /etc/keepalived/keepalived.conf && microdnf clean all
COPY /skel /
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.1.5
LABEL name="keepalived"
LABEL description="keepalived for Ceph"
LABEL summary="Provides keepalived on RHEL 8 for Ceph."
LABEL io.k8s.display-name="Keepalived on RHEL 8"
LABEL io.openshift.tags="Ceph keepalived"
|