summaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: 0f523db0ef2c74bf3dbf1f113f023d53f749f46c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM alpine:edge

RUN apk add make zig git

WORKDIR inotify-info

COPY . .

RUN CC="zig cc -target $(uname -m)-linux-musl" \
    CXX="zig c++ -target $(uname -m)-linux-musl" \
    make VERBOSE=1

FROM scratch
COPY --from=0 /inotify-info/_release/inotify-info /inotify-info

ENTRYPOINT ["/inotify-info"]