From 0a1571f5026b01b10e769fba1f80e551796072c1 Mon Sep 17 00:00:00 2001 From: Rafia Sabih Date: Wed, 26 Jun 2019 13:41:18 +0200 Subject: [PATCH] Fixing debug permission issue --- docker/DebugDockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/DebugDockerfile b/docker/DebugDockerfile index 3aba4566c..c9a60cc6f 100644 --- a/docker/DebugDockerfile +++ b/docker/DebugDockerfile @@ -11,7 +11,7 @@ USER 1000:1000 RUN go get github.com/derekparker/delve/cmd/dlv -RUN chmod -R +x /root/go/bin/dlv +RUN chmod +x /root/go/bin/dlv COPY build/* / CMD ["/root/go/bin/dlv", "--listen=:7777", "--headless=true", "--api-version=2", "exec", "/postgres-operator"]