From e56563c5879add3e8056caafe4186d401b5360cf Mon Sep 17 00:00:00 2001 From: Roy Kim Date: Wed, 18 Mar 2020 10:35:54 +0900 Subject: [PATCH] [#naver/pinpoint#6598] resolve tar issue --- pinpoint-agent/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pinpoint-agent/Dockerfile b/pinpoint-agent/Dockerfile index 0c7df4e..35fd266 100644 --- a/pinpoint-agent/Dockerfile +++ b/pinpoint-agent/Dockerfile @@ -13,7 +13,7 @@ RUN apk add --update curl bash \ && chmod -R o+x /pinpoint-agent \ && curl -SL ${INSTALL_URL} -o pinpoint-agent.tar.gz \ && gunzip pinpoint-agent.tar.gz \ - && tar -xf pinpoint-agent.tar -C /pinpoint-agent \ + && tar -xf pinpoint-agent.tar --strip 1 -C /pinpoint-agent \ && rm pinpoint-agent.tar \ && apk del curl \ && rm /var/cache/apk/*