Skip to content
This repository was archived by the owner on Apr 25, 2023. It is now read-only.

Commit ebf074b

Browse files
authored
Merge pull request #28 from linuxserver/websocat
fix websocat binaries
2 parents a8fd643 + 824212f commit ebf074b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@ RUN \
140140
WEBSOCAT_RELEASE=$(curl -sX GET "https://api.github.com/repos/vi/websocat/releases/latest" \
141141
| awk '/tag_name/{print $4;exit}' FS='[""]'); \
142142
curl -o \
143-
/usr/bin/websocat -L \
144-
"https://github.com/vi/websocat/releases/download/${WEBSOCAT_RELEASE}/websocat_linux64" && \
143+
/usr/bin/websocat -fL \
144+
"https://github.com/vi/websocat/releases/download/${WEBSOCAT_RELEASE}/websocat.x86_64-unknown-linux-musl" && \
145145
chmod +x /usr/bin/websocat && \
146146
echo "**** cleanup ****" && \
147147
apt-get autoclean && \

Dockerfile.aarch64

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@ RUN \
140140
WEBSOCAT_RELEASE=$(curl -sX GET "https://api.github.com/repos/vi/websocat/releases/latest" \
141141
| awk '/tag_name/{print $4;exit}' FS='[""]'); \
142142
curl -o \
143-
/usr/bin/websocat -L \
144-
"https://github.com/vi/websocat/releases/download/${WEBSOCAT_RELEASE}/websocat_linuxarm32" && \
143+
/usr/bin/websocat -fL \
144+
"https://github.com/vi/websocat/releases/download/${WEBSOCAT_RELEASE}/websocat.aarch64-unknown-linux-musl" && \
145145
chmod +x /usr/bin/websocat && \
146146
echo "**** cleanup ****" && \
147147
apt-get autoclean && \

Dockerfile.armhf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@ RUN \
140140
WEBSOCAT_RELEASE=$(curl -sX GET "https://api.github.com/repos/vi/websocat/releases/latest" \
141141
| awk '/tag_name/{print $4;exit}' FS='[""]'); \
142142
curl -o \
143-
/usr/bin/websocat -L \
144-
"https://github.com/vi/websocat/releases/download/${WEBSOCAT_RELEASE}/websocat_linuxarm32" && \
143+
/usr/bin/websocat -fL \
144+
"https://github.com/vi/websocat/releases/download/${WEBSOCAT_RELEASE}/websocat.arm-unknown-linux-musleabi" && \
145145
chmod +x /usr/bin/websocat && \
146146
echo "**** cleanup ****" && \
147147
apt-get autoclean && \

0 commit comments

Comments
 (0)