diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..fca93c87 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM node:onbuild + +RUN \ + cp -v exampleConfig.js config.js && \ + sed -i 's/graphite.example.com/graphite/' config.js + +EXPOSE 8125/udp +EXPOSE 8126 + +ENTRYPOINT [ "node", "stats.js", "config.js" ]