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

Unable to install Scipy latest version 1.9.3 on python3.8-alpine image – Docker

Trying to install Scipy latest version (1.9.3) on python3.8-alpine image tiangolo/uwsgi-nginx-flask:python3.8-alpine is not successful. Scipy tries to install numpy 1.8.5 and it fails with following error. ImportError: cannot import name 'Log' from 'distutils.log' (/tmp/pip-build-env-28q9f6x4/overlay/lib/python3.8/site-packages/setuptools/_distutils/log.py) I can goahead and install lower…

VIEW QUESTION
Back To Top
Search