upx/Dockerfile

14 lines
437 B
Docker
Raw Permalink Normal View History

2019-06-22 19:52:56 +00:00
FROM alpine:latest
2019-06-22 22:40:05 +00:00
RUN apk add --update wget make tar xz && \
2019-06-22 19:58:22 +00:00
wget https://github.com/upx/upx/releases/download/v3.95/upx-3.95-amd64_linux.tar.xz && \
2019-06-22 20:05:01 +00:00
tar xf upx-3.95-amd64_linux.tar.xz && \
2019-06-22 19:58:22 +00:00
mv upx-3.95-amd64_linux/upx /usr/local/bin
2019-06-22 19:52:56 +00:00
2020-09-03 11:33:39 +00:00
RUN wget https://github.com/magefile/mage/releases/download/v1.10.0/mage_1.10.0_Linux-64bit.tar.gz && \
tar xf mage_1.10.0_Linux-64bit.tar.gz && \
mv mage /usr/local/bin
2019-06-22 19:52:56 +00:00
ENTRYPOINT ["upx"]