forked from IBM/ibm-cert-manager-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
executable file
·25 lines (19 loc) · 732 Bytes
/
Dockerfile
File metadata and controls
executable file
·25 lines (19 loc) · 732 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
FROM docker-na-public.artifactory.swg-devops.com/hyc-cloud-private-edge-docker-local/build-images/ubi9-minimal:latest-amd64
ARG VCS_REF
ENV OPERATOR=/usr/local/bin/ibm-cert-manager-operator \
USER_UID=1001 \
USER_NAME=ibm-cert-manager-operator
# Add licenses folder
RUN mkdir /licenses
COPY LICENSE /licenses
# install operator binary
COPY build/_output/bin/ibm-cert-manager-operator ${OPERATOR}
ENTRYPOINT ["ibm-cert-manager-operator"]
USER ${USER_UID}
LABEL name="ibm-cert-manager-operator"
LABEL vendor="IBM"
LABEL version="0.0.1"
LABEL release="0.0.1"
LABEL summary="Operator for the cert-manager microservice"
LABEL description="Operator for the cert-manager-microservice"
LABEL org.label-schema.vcs-ref=$VCS_REF