This is an automated email from the ASF dual-hosted git repository.

hulk pushed a commit to branch unstable
in repository https://gitbox.apache.org/repos/asf/kvrocks-controller.git


The following commit(s) were added to refs/heads/unstable by this push:
     new b6e5fb5  Split ENTRYPOINT to CMD in Dockerfile (#359)
b6e5fb5 is described below

commit b6e5fb5a993f4c11e24b63eed281cb4b1b8e8c34
Author: Twice <[email protected]>
AuthorDate: Wed Oct 8 16:13:44 2025 +0800

    Split ENTRYPOINT to CMD in Dockerfile (#359)
---
 Dockerfile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
index df53ba2..ea7653e 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -40,4 +40,5 @@ COPY ./LICENSE ./NOTICE ./licenses ./
 COPY ./config/config.yaml /var/lib/kvctl/
 
 EXPOSE 9379:9379
-ENTRYPOINT ["./bin/kvctl-server", "-c", "/var/lib/kvctl/config.yaml"]
+ENTRYPOINT ["./bin/kvctl-server"]
+CMD ["-c", "/var/lib/kvctl/config.yaml"]

Reply via email to