Skip to content

Commit fbf2d2d

Browse files
committed
Bump turncat version to v0.19.0
1 parent a10c1a2 commit fbf2d2d

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Dockerfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,14 @@
33
# Download and compress external binaries
44
FROM alpine:3.20 as builder
55

6+
ENV TURNCAT_VERSION=v0.19.0
7+
ENV WEBSOCAT_VERSION=v1.13.0
8+
69
WORKDIR /app
710
RUN apk add --no-cache curl upx
811
RUN echo $(apk --print-arch)
912
RUN 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

0 commit comments

Comments
 (0)