-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile.rhel
23 lines (19 loc) · 1.02 KB
/
Dockerfile.rhel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.4
RUN microdnf update && microdnf install -y shadow-utils && microdnf clean all
# Ensure we add licensing and help information for certification requirements
COPY LICENSE /licenses/couchbase.txt
COPY README.md /help.1
COPY bin/couchbase-audit-cleanup /usr/local/bin/couchbase-audit-cleanup
RUN useradd -u 8453 -m -s /bin/false couchbase
USER 8453
ARG PROD_VERSION
LABEL name="couchbase/audit-cleanup" \
vendor="Couchbase" \
version="${PROD_VERSION}" \
release="Latest" \
summary="Couchbase Autonomous Operator ${PROD_VERSION} Audit Cleanup Support" \
description="Couchbase Autonomous Operator ${PROD_VERSION} Audit Cleanup Support" \
architecture="x86_64" \
run="docker run -d --name logging registry.connect.redhat.com/couchbase/audit-cleanup:${PROD_VERSION}-${OS_BUILD}" \
description="Couchbase image to cleanup rotated audit logs" vendor="Couchbase" maintainer="[email protected]"
CMD [ "/usr/local/bin/couchbase-audit-cleanup" ]