From f8ea3e039ad8084c3cb9d324a711af4da982c61f Mon Sep 17 00:00:00 2001 From: Nashwan Azhari Date: Mon, 9 Sep 2024 14:45:33 +0300 Subject: [PATCH] Fix Dockerfile CMD to correct instance manager exe This patch fixes the CMD in the longhorn-instance-manager container image. Signed-off-by: Nashwan Azhari --- package/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/Dockerfile b/package/Dockerfile index 0e30743cb..606cc10d3 100644 --- a/package/Dockerfile +++ b/package/Dockerfile @@ -177,4 +177,4 @@ ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-${ARC RUN chmod +x /tini ENTRYPOINT ["/tini", "--"] -CMD ["longhorn"] +CMD ["longhorn-instance-manager"]