docker-devops-helper/Dockerfile
Roger Sikorski 2668576158
All checks were successful
build / Dockerfile lint (push) Successful in 46s
build / build (push) Successful in 51s
feature/sleep-for-ever
2023-11-12 12:29:37 +01:00

10 lines
189 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
COPY ./bin/ /usr/local/bin
ENTRYPOINT ["sleep", "infinity"]