9 lines
133 B
Docker
9 lines
133 B
Docker
FROM docker:latest
|
|
|
|
RUN apk add bash
|
|
|
|
COPY ./entrypoint.sh /entrypoint.sh
|
|
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"] |