1
0
forked from finn/tinyboard
Files
tinyboard/spoke/Dockerfile

10 lines
290 B
Docker
Raw Normal View History

2026-04-13 12:53:14 -07:00
FROM debian:bookworm-slim
RUN apt-get update && apt-get install -y autossh openssh-client && rm -rf /var/lib/apt/lists/*
2026-04-14 16:36:11 -07:00
2026-04-14 19:07:09 -07:00
ARG UID=1000
2026-04-13 12:53:14 -07:00
ARG GID=1000
RUN groupadd -g ${GID} armbian && useradd -m -u ${UID} -g armbian armbian
USER armbian
WORKDIR /home/armbian
2026-04-14 16:36:11 -07:00
CMD ["autossh", "-M", "0", "-N"]