Files
installer-tool/Dockerfile
2023-06-15 11:34:37 +00:00

9 lines
143 B
Docker

FROM alpine:latest
RUN apk --update --no-cache add git openssh-client jq
COPY config /root/.ssh/
COPY *.sh /
ENTRYPOINT ["/entrypoint.sh"]