Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Notes for people to build this under alpine linux /docker #4

Open
rfdrake opened this issue Dec 14, 2020 · 1 comment
Open

Notes for people to build this under alpine linux /docker #4

rfdrake opened this issue Dec 14, 2020 · 1 comment

Comments

@rfdrake
Copy link

rfdrake commented Dec 14, 2020

This is what I needed for my dockerfile to make this work.

FROM alpine:latest AS builder
WORKDIR /
RUN apk add build-base git automake autoconf libtool m4
RUN git clone https://github.com/netdata/libjudy
RUN mkdir -p /libjudy/doc/man/man3
RUN cd /libjudy && sed -i 's/automake-1.9/automake/' bootstrap && ./bootstrap && ./configure && make install

The man3 directory is a makefile oversight but I have no idea how to correctly fix it. The sed automake hack seems to work for now, but might break in the future. There are some warnings about old names being used in configure.ac.

@jonathantullett
Copy link

Thanks for this @rfdrake - it's saved me a bunch of time today!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants