Adding prepwork for Inference Box

This commit is contained in:
2026-04-11 12:59:02 +02:00
parent a6a7bb9af5
commit 5226ad0842
7 changed files with 411 additions and 58 deletions
+5
View File
@@ -0,0 +1,5 @@
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"]