This repository has been archived on 2025-04-27. You can view files and clone it, but cannot push or open issues or pull requests.

9 lines
210 B
Docker

# https://hub.docker.com/_/alpine
FROM alpine:3.18
RUN apk update && \
apk add --no-cache nano mc micro rsync ncdu git curl openssh-client-common
COPY ./bin/ /usr/local/bin
ENTRYPOINT ["sleep", "infinity"]