This commit is contained in:
2026-03-22 22:23:55 +02:00
parent 8e50aaa5d2
commit bc544a9b49
3 changed files with 71 additions and 0 deletions

20
remote/ttyd/Dockerfile Normal file
View File

@@ -0,0 +1,20 @@
FROM tsl0922/ttyd:alpine
# Install ping and ssh client
RUN apk update && apk add --no-cache \
iputils \
openssh-client \
curl \
bind-tools \
bash-completion \
coreutils
RUN rm -rf /var/cache/apk/*
RUN addgroup -g 1000 ttyd && \
adduser -D -u 1000 -G ttyd tty
USER 1000:1000
# Set default command to start ttyd with bash
CMD ["ttyd", "/bin/bash"]