From a3799223af8b610a7e73aa48b49867b0dd07f7d1 Mon Sep 17 00:00:00 2001 From: konrad Date: Sat, 22 Jun 2019 22:05:01 +0200 Subject: [PATCH] fixed dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 67e7b8a..75ad3c7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"]