Files
agent0/Dockerfile.tunnel
T

6 lines
187 B
Docker
Raw Normal View History

2026-04-11 12:59:02 +02:00
FROM alpine:3.21
RUN apk add --no-cache autossh tini openssh-client
COPY tunnel-entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/sbin/tini", "--", "/entrypoint.sh"]