Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM --platform=$BUILDPLATFORM registry.access.redhat.com/ubi10-minimal:latest
FROM --platform=$BUILDPLATFORM registry.access.redhat.com/ubi9-minimal:latest

RUN microdnf update -y

# If you edit this version number, edit it here *and* the LABEL below:
RUN microdnf install -y haproxy && rpm -q haproxy-3.0.5
RUN microdnf install -y haproxy && rpm -q haproxy-2.4.22

# Creating haproxy user and group
RUN microdnf install -y shadow-utils
Expand All @@ -16,12 +16,12 @@ RUN if [ $(uname --hardware-platform) == "linux/amd64" ]; then microdnf install
LABEL maintainer="Guillaume Abrioux <[email protected]>"
LABEL com.redhat.component="rhceph-haproxy-container"
LABEL name="haproxy"
LABEL version=3.0.5-4
LABEL version=2.4.22
LABEL description="HAProxy container"
LABEL summary="Provides HAproxy container."
LABEL io.k8s.display-name="HAProxy container"
LABEL io.k8s.description="HAProxy container"
LABEL io.openshift.tags="3.0.5-4"
LABEL io.openshift.tags="2.4.22"
LABEL cpe=cpe:/a:redhat:ceph_storage:9::el10
LABEL org.opencontainers.image.created="${BUILD_DATE}"

Expand Down
Loading