docker-swiss-army-knife/alpine/Dockerfile
Julius Zeidler 380d18c806
All checks were successful
Build images / check-docker (push) Successful in 35s
Build images / build-and-push (push) Successful in 1m16s
add nodejs to images
2025-04-10 13:31:37 +02:00

7 lines
166 B
Docker

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