-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathDockerfile
More file actions
40 lines (34 loc) · 1.54 KB
/
Dockerfile
File metadata and controls
40 lines (34 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
FROM debian:oldstable-slim
ARG UPX_VER
ARG UPLOADER_VER
ENV UPX_VER=${UPX_VER:-5.0.2}
ENV UPLOADER_VER=${UPLOADER_VER:-v0.13.0}
RUN DEBIAN_FRONTEND=noninteractive apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install --fix-missing --no-install-recommends -y \
curl \
wget \
git \
build-essential \
zip \
xz-utils \
jq \
ca-certificates \
&& rm -rf /var/lib/apt/lists/*
# install latest upx 3.96 by wget instead of `apt install upx-ucl`(only 3.95)
RUN export arch=$(dpkg --print-architecture) && \
wget --progress=dot:mega https://github.com/upx/upx/releases/download/v${UPX_VER}/upx-${UPX_VER}-${arch}_linux.tar.xz && \
tar -Jxf upx-${UPX_VER}-${arch}_linux.tar.xz && \
mv upx-${UPX_VER}-${arch}_linux /usr/local/ && \
ln -s /usr/local/upx-${UPX_VER}-${arch}_linux/upx /usr/local/bin/upx && \
rm upx-${UPX_VER}-${arch}_linux.tar.xz && \
upx --version
# github-assets-uploader to provide robust github assets upload
RUN export arch=$(dpkg --print-architecture) && \
wget --progress=dot:mega https://github.com/wangyoucao577/assets-uploader/releases/download/${UPLOADER_VER}/github-assets-uploader-${UPLOADER_VER}-linux-${arch}.tar.gz -O github-assets-uploader.tar.gz && \
tar -zxf github-assets-uploader.tar.gz && \
mv github-assets-uploader /usr/sbin/ && \
rm -f github-assets-uploader.tar.gz && \
github-assets-uploader -version
COPY *.sh /
ENTRYPOINT ["/entrypoint.sh"]
LABEL maintainer = "Jay Zhang <wangyoucao577@gmail.com>"
LABEL org.opencontainers.image.source = "https://github.com/wangyoucao577/go-release-action"