We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f814b1c commit c4dc142Copy full SHA for c4dc142
Dockerfile
@@ -2,6 +2,10 @@ FROM golang:1.24
2
3
RUN apt-get update
4
RUN apt-get install bash make git curl jq nodejs npm -y
5
+RUN cd /tmp && \
6
+ wget https://github.com/upx/upx/releases/download/v5.0.0/upx-5.0.0-amd64_linux.tar.xz && \
7
+ tar -xf upx-5.0.0-amd64_linux.tar.xz && \
8
+ mv upx-5.0.0-amd64_linux/upx /usr/bin
9
ENV CONTEXT=abs
10
COPY . /abs
11
WORKDIR /abs
scripts/release.abs
@@ -100,6 +100,8 @@ for platform in platforms {
100
}
101
102
103
+`upx builds/*`
104
+
105
echo("building docs")
106
docs = `NODE_OPTIONS=--openssl-legacy-provider make build_docs`
107
0 commit comments