docker-swiss-army-knife/Dockerfile

7 lines
150 B
Text
Raw Normal View History

2024-03-26 10:16:24 +00:00
FROM alpine
RUN apk update && \
apk add --no-cache curl jq bash git coreutils zip openssh && \
rm -rf /var/cache/apk/*
CMD [ "bash" ]