7 lines
102 B
Docker
7 lines
102 B
Docker
FROM docker:latest
|
|
|
|
RUN apk add bash
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"] |