You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docker-grafana/collectd/Dockerfile

17 lines
516 B

FROM alpine:3.15
3 years ago
3 years ago
RUN apk --no-cache add collectd collectd-python collectd-network tzdata \
py3-pip gettext && \
apk add --no-cache --virtual .build-deps \
git libxslt-dev gcc musl-dev python3-dev && \
git clone --depth 1 https://github.com/fetzerch/fritzcollectd.git && \
cd fritzcollectd && \
pip3 install --no-cache-dir . && \
apk del .build-deps && \
rm -rf .git/ && \
apk --no-cache add libxslt
3 years ago
COPY ./root /
ENTRYPOINT /entrypoint.sh