7 lines
90 B
Docker
7 lines
90 B
Docker
FROM docker:cli
|
|
|
|
COPY watch.sh /watch.sh
|
|
RUN chmod +x /watch.sh
|
|
|
|
ENTRYPOINT ["/watch.sh"]
|