Revision 0c241dbbb3d19e13f61a4626df190fc9c0e1c27a authored by Elliot Blackburn on 25 February 2020, 19:00:54 UTC, committed by Elliot Blackburn on 25 February 2020, 19:00:54 UTC
1 parent 9c4a66a
Raw File
Dockerfile
FROM node:10.15.3

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