How can I add fluent-bit to an image that builds on docker:latest
?
I have tried this:
FROM docker:latest
RUN apk add python3 py-pip python3-dev libffi-dev openssl-dev gcc libc-dev make curl libc6-compat
RUN apk add --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing/
ENTRYPOINT ["/fluent-bit/bin/fluent-bit", "-c", "/fluent-bit/etc/fluent-bit.conf"]
But it does not find /fluent-bit/bin/fluent-bit
. I do need Python, Docker, and all the other specified dependencies.