skip to Main Content

Installing fluent-bit in Alpine docker image

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…

VIEW QUESTION
Back To Top
Search