docker-devops-helper/Dockerfile
Roger Sikorski e6bf1689bc
All checks were successful
build / Dockerfile lint (push) Successful in 7s
build / build (push) Successful in 26s
feature/sleep-for-ever (#6)
Reviewed-on: #6
2023-11-12 12:40:49 +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"]