9 lines
152 B
Docker
9 lines
152 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk --update --no-cache add git openssl ca-certificates jq
|
|
|
|
COPY config /root/.ssh/
|
|
COPY *.sh /
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|