mirror of
https://github.com/valitydev/inotify-tail.git
synced 2024-11-06 00:35:24 +00:00
295f1cd45f
Some checks failed
Build and publish Docker image / build-push (push) Has been cancelled
* mon script low cpu usage * fix path * rm intorify-utils
12 lines
236 B
Docker
12 lines
236 B
Docker
# syntax=docker/dockerfile:1.2
|
|
|
|
FROM --platform=${TARGETPLATFORM} alpine:latest as base
|
|
|
|
RUN apk add --no-cache bash coreutils
|
|
|
|
COPY monitor.sh /usr/local/bin/monitor
|
|
|
|
RUN chmod +x /usr/local/bin/monitor
|
|
|
|
CMD ["/usr/local/bin/monitor"]
|