blob: 62545acbd25263d060facc8ff97e81a285e75b46 [file] [log] [blame]
Varun Patil23135a42023-11-18 15:12:42 -08001FROM ghcr.io/named-data/nfd:latest
2
3RUN apt-get update \
4 && apt-get install -y --no-install-recommends python3 \
5 && rm -rf /var/lib/apt/lists/*
6
7VOLUME /run/nfd
8
9EXPOSE 8080/tcp
10
11ENTRYPOINT ["/usr/bin/nfd-status-http-server"]
12CMD ["--address", "0.0.0.0", "--port", "8080"]