ARG DOCKER_BASE_IMAGE
ARG HOST_UID

FROM $DOCKER_BASE_IMAGE

ENV OPERATOR=/usr/local/bin/managedcluster-import-controller-coverage
# Share the same uid as host to recode the test coverage record
ENV USER_UID=${HOST_UID}

USER ${USER_UID}

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