docker-swiss-army-knife/alpine/Dockerfile
Julius Zeidler 256f685f6b
Some checks failed
Build images / check-docker (push) Successful in 2s
Build images / build-and-push (push) Failing after 34s
add diff
2025-04-10 15:19:26 +02:00

7 lines
178 B
Docker

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