File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 33# Download and compress external binaries
44FROM alpine:3.20 as builder
55
6+ ENV TURNCAT_VERSION=v0.19.0
7+ ENV WEBSOCAT_VERSION=v1.13.0
8+
69WORKDIR /app
710RUN apk add --no-cache curl upx
811RUN echo $(apk --print-arch)
912RUN curl -Lo websocat \
10- https://github.com/vi/websocat/releases/download/v1.13.0 /websocat.$(apk --print-arch)-unknown-linux-musl \
13+ https://github.com/vi/websocat/releases/download/$WEBSOCAT_VERSION /websocat.$(apk --print-arch)-unknown-linux-musl \
1114 && chmod a+x websocat \
1215 && upx --best --lzma websocat
1316
@@ -17,7 +20,7 @@ RUN apkArch="$(apk --print-arch)"; \
1720 *) export ARCH='amd64' ;; \
1821 esac; \
1922 curl -Lo turncat \
20- https://github.com/l7mp/stunner/releases/download/v0.18.0 /turncat-v0.18.0 -linux-$ARCH \
23+ https://github.com/l7mp/stunner/releases/download/$TURNCAT_VERSION /turncat-$TURNCAT_VERSION -linux-$ARCH \
2124 && chmod a+x turncat \
2225 && upx --best --lzma turncat
2326
You can’t perform that action at this time.
0 commit comments