docker-swiss-army-knife/alpine/Dockerfile
Julius Zeidler 8bbd3e17aa
All checks were successful
Build images / check-docker (push) Successful in 2s
Build images / build-and-push (push) Successful in 1m53s
add diffutils
2025-04-10 15:21:55 +02:00

7 lines
183 B
Docker

FROM alpine
RUN apk update && \
apk add --no-cache curl diffutils jq bash git coreutils zip openssh zsh nodejs npm yarn docker && \
rm -rf /var/cache/apk/*
CMD [ "zsh" ]