docker-devops-helper/dockerfile/alpine/Dockerfile
Roger Sikorski d8644e1fa6
Some checks failed
build / build (push) Successful in 1m30s
build / Dockerfile lint (push) Failing after 7s
added build of ubuntu image
2023-11-12 17:17:52 +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"]