dockerfiles/ssh-ci/Dockerfile

9 lines
146 B
Docker
Raw Normal View History

2022-08-26 22:24:58 +02:00
FROM alpine:3.16
COPY entrypoint.sh /entrypoint
RUN chmod +x /entrypoint && \
apk add --no-cache openssh-client
ENTRYPOINT ["/entrypoint"]