summaryrefslogtreecommitdiffstats
path: root/Dockerfile.aarch64
blob: 5442698766b4bbfa8c003d7bcc164035fca0d661 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# author  : titpetric
# original: https://github.com/titpetric/netdata

FROM resin/aarch64-debian:stretch

RUN [ "cross-build-start"]

ADD . /netdata.git

RUN cd ./netdata.git && chmod +x ./docker-build.sh && sync && sleep 1 && ./docker-build.sh

WORKDIR /

ENV NETDATA_PORT 19999
EXPOSE $NETDATA_PORT

CMD /usr/sbin/netdata -D -s /host -p ${NETDATA_PORT}

RUN [ "cross-build-end"]