aboutsummaryrefslogtreecommitdiffstats
path: root/vnfs/DAaaS/microservices/remote-config-operator/build/Dockerfile
blob: 6c8d7ed82e1d392b8b41934e7a9f3e1a3d41795d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM registry.access.redhat.com/ubi8/ubi-minimal:latest

ENV OPERATOR=/usr/local/bin/remote-config-operator \
    USER_UID=1001 \
    USER_NAME=remote-config-operator

# install operator binary
COPY build/_output/bin/remote-config-operator ${OPERATOR}

COPY build/bin /usr/local/bin
RUN  /usr/local/bin/user_setup

ENTRYPOINT ["/usr/local/bin/entrypoint"]

USER ${USER_UID}