docker-devops-helper/dockerfile/alpine
Roger Sikorski b3f72ae0e9
All checks were successful
build / Dockerfile lint (push) Successful in 42s
build / build (push) Successful in 1m10s
feature/add-ping-dig-and-nslookup (#9)
Reviewed-on: #9
2023-11-14 07:52:18 +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"]