10 lines
191 B
Docker
10 lines
191 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk --update --no-cache add git openssh-client jq
|
|
|
|
COPY config /root/.ssh/
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
COPY deploy.sh /deploy.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|