https://github.com/statsd/statsd
Raw File
Tip revision: d9e53dcbff2f71ea3d8dc5c6d056be3d8a025946 authored by Mike Heffner on 11 May 2023, 13:10:50 UTC
release 0.10.0
Tip revision: d9e53dc
Dockerfile
FROM node:18.16.0

RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app

# Install python
# RUN apk add --no-cache --update g++ gcc libgcc libstdc++ linux-headers make python

# Setup node envs
ARG NODE_ENV
ENV NODE_ENV $NODE_ENV

# Install dependencies
COPY package.json /usr/src/app/
RUN npm install && npm cache clean --force

# Copy required src (see .dockerignore)
COPY . /usr/src/app

# Set graphite hostname to "graphite"
RUN \
  ls -la && \
  cp -v exampleConfig.js config.js && \
  sed -i 's/graphite.example.com/graphite/' config.js

# Expose required ports
EXPOSE 8125/udp
EXPOSE 8126

# Start statsd
ENTRYPOINT [ "node", "stats.js", "config.js" ]
back to top