docker-swiss-army-knife/alpine/Dockerfile

8 lines
178 B
Text
Raw Normal View History

2024-03-26 10:16:24 +00:00
FROM alpine
RUN apk update && \
2025-04-10 15:19:26 +02:00
apk add --no-cache curl diff jq bash git coreutils zip openssh zsh nodejs npm yarn docker && \
2025-04-10 13:31:37 +02:00
rm -rf /var/cache/apk/*
2024-03-26 10:16:24 +00:00
2024-03-26 11:43:46 +00:00
CMD [ "zsh" ]