6 lines
197 B
Docker
6 lines
197 B
Docker
|
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"]
|