dockerfiles/ssh-ci/Dockerfile

9 lines
146 B
Docker
Raw Normal View History

2022-09-13 10:29:37 +02:00
FROM alpine:3.16
COPY entrypoint.sh /entrypoint
RUN chmod +x /entrypoint && \
apk add --no-cache openssh-client
ENTRYPOINT ["/entrypoint"]