fixed dockerfile
continuous-integration/drone/push Build is failing Details

This commit is contained in:
konrad 2019-06-22 22:05:01 +02:00
parent 136d5fe674
commit a3799223af
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,8 @@
FROM alpine:latest
RUN apk add --update wget tar && tar xf upx-3.95-amd64_linux.tar.xz && \
RUN apk add --update wget tar && \
wget https://github.com/upx/upx/releases/download/v3.95/upx-3.95-amd64_linux.tar.xz && \
tar xf upx-3.95-amd64_linux.tar.xz && \
mv upx-3.95-amd64_linux/upx /usr/local/bin
ENTRYPOINT ["upx"]