8 lines
137 B
Docker
8 lines
137 B
Docker
FROM alpine:3.16
|
|
|
|
RUN apk --no-cache add openssh-client bash
|
|
|
|
COPY scripts /opt/scripts
|
|
|
|
ENTRYPOINT ["sh", "-c", "/opt/scripts/init.sh"]
|