Alexander "PapaTutuWawa
7abdf4b03c
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
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"] |