You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ha...@apache.org on 2020/12/21 12:20:24 UTC

[skywalking-swck] branch master updated: Place the manager binary in the right path (#17)

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

hanahmily pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-swck.git


The following commit(s) were added to refs/heads/master by this push:
     new 759e7a4  Place the manager binary in the right path (#17)
759e7a4 is described below

commit 759e7a4714e7dabb980b79878749951a96690209
Author: Gao Hongtao <ha...@gmail.com>
AuthorDate: Mon Dec 21 20:19:27 2020 +0800

    Place the manager binary in the right path (#17)
    
    Signed-off-by: Gao Hongtao <ha...@gmail.com>
---
 build/images/Dockerfile.release | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/build/images/Dockerfile.release b/build/images/Dockerfile.release
index edd3c75..b2edae5 100644
--- a/build/images/Dockerfile.release
+++ b/build/images/Dockerfile.release
@@ -50,7 +50,7 @@ RUN set -eux; \
 
 FROM gcr.io/distroless/static:nonroot
 WORKDIR /tmp
-COPY --from=builder --chown=nonroot:nonroot /swck/bin/manager-linux-amd64 /bin/manager
+COPY --from=builder --chown=nonroot:nonroot /swck/bin/manager-linux-amd64 /manager
 USER nonroot:nonroot
 
-ENTRYPOINT ["/bin/manager"]
+ENTRYPOINT ["/manager"]