woodpecker-ssg-deploy/Dockerfile.ssh

6 lines
197 B
Docker
Raw Permalink Normal View History

FROM alpine:3.19
COPY --chmod=555 entrypoint-ssh.sh /bin/entrypoint.sh
COPY --chmod=600 ssh_config /root/.ssh/config
RUN apk add --no-cache git openssh zsh
ENTRYPOINT ["zsh", "/bin/entrypoint.sh"]