fix musl incompatibility

This commit is contained in:
Nils 2021-06-23 21:45:22 +02:00
parent f25dab2d79
commit 989ac9da8b
Signed by: byreqz
GPG Key ID: 396A62D7D436749E
2 changed files with 6 additions and 6 deletions

View File

@ -1,8 +1,8 @@
FROM alpine:latest
RUN apk update
RUN apk add curl jq tmux
RUN curl -s https://api.github.com/repos/yudai/gotty/releases/latest | jq -r '.assets[].browser_download_url' | grep "gotty_linux_amd64.tar.gz" | xargs curl -L -o gotty_linux_amd64.tar.gz
RUN apk add curl jq tmux libc6-compat
RUN curl -s https://api.github.com/repos/yudai/gotty/releases/latest | jq -r '.assets[].browser_download_url' | grep "gotty_linux_amd64.tar.gz" | xargs curl -L -o gotty_linux_amd64.tar.gz
RUN tar xvfz gotty_linux_amd64.tar.gz
ENV TERM=xterm

8
run.sh
View File

@ -1,4 +1,4 @@
#!/bin/ash
#!/bin/sh
if [ -z "$port" ];then
port=8080
@ -15,8 +15,8 @@ if [ -n "$pkgs" ];then
fi
if [ -z "$command" ];then
apk update
apk add pfetch figlet
command="pfetch && figlet no command set"
apk add figlet
command="curl -s https://raw.githubusercontent.com/dylanaraps/pfetch/master/pfetch | ash && figlet no command set && read swag"
fi
./gotty -p "$port" $creds --title-format "$title" tmux new-session -A -s $command "$title"
/gotty -p "$port" $creds --title-format "$title" tmux new-session -A -s "$title" "$command"