CHG: Fix agent unpacking on agent image

Signed-off-by: Patricio Pérez <pperez@boaboa.org>
This commit is contained in:
Patricio Pérez 2020-03-16 00:44:45 -03:00
parent 59b0c0a94f
commit f27e41a5be
1 changed files with 1 additions and 1 deletions

View File

@ -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 -C /pinpoint-agent --strip-components=1 \
&& rm pinpoint-agent.tar \
&& apk del curl \
&& rm /var/cache/apk/*