docker-devops-helper/dockerfile/alpine
Roger Sikorski 4a0cc9585e
All checks were successful
build / Dockerfile lint (push) Successful in 6s
build / build (push) Successful in 31s
feature/add-ping-dig-and-nslookup
2023-11-14 07:49:51 +01:00

10 lines
252 B
Plaintext

# 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 iputils bind-tools
COPY ./bin/ /usr/local/bin
ENTRYPOINT ["sleep", "infinity"]