docker-swiss-army-knife/alpine/Dockerfile
Julius Zeidler cef9837c80
All checks were successful
Build images / check-docker (push) Successful in 2s
Build images / build-and-push (push) Successful in 2m1s
add python
2025-04-10 19:28:41 +02:00

7 lines
199 B
Docker

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