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.
Roger Sikorski d8644e1fa6
Some checks failed
build / build (push) Successful in 1m30s
build / Dockerfile lint (push) Failing after 7s
added build of ubuntu image
2023-11-12 17:17:52 +01:00

10 lines
235 B
Docker

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