9 lines
146 B
Docker
9 lines
146 B
Docker
|
FROM alpine:3.16
|
||
|
|
||
|
COPY entrypoint.sh /entrypoint
|
||
|
|
||
|
RUN chmod +x /entrypoint && \
|
||
|
apk add --no-cache openssh-client
|
||
|
|
||
|
ENTRYPOINT ["/entrypoint"]
|