docker-devops-helper/dockerfile/alpine

10 lines
252 B
Plaintext
Raw Normal View History

2021-05-15 09:07:36 +02:00
# https://hub.docker.com/_/alpine
# https://endoflife.date/alpine
FROM alpine:3.18
2021-05-15 09:07:36 +02:00
RUN apk update && \
2023-11-14 07:49:51 +01:00
apk add --no-cache nano mc micro rsync ncdu git curl openssh-client iputils bind-tools
COPY ./bin/ /usr/local/bin
ENTRYPOINT ["sleep", "infinity"]