From cf367bc69dfb588294b62d0792a42b71a7c12a95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADnez=20Trivi=C3=B1o?= Date: Tue, 11 Jan 2022 09:09:23 -0800 Subject: [PATCH] fix: fix dockerfile to add missing deps (#132) Signed-off-by: Miguel Martinez Trivino --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 8f73dfae..ebd10a0e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,10 @@ LABEL description="Asset Relocation Tool for Kubernetes" LABEL maintainer="tanzu-isv-engineering@groups.vmware.com" LABEL org.opencontainers.image.source https://github.com/vmware-tanzu/asset-relocation-tool-for-kubernetes +# Deps required for docker-login and the additional testing performed in the CI using this image +# TODO: remove these dependencies +RUN yum -y install diffutils jq + COPY assets/docker-login.sh /usr/local/bin/docker-login.sh COPY ./relok8s /usr/local/bin ENTRYPOINT ["/usr/local/bin/relok8s"]