加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 653 Bytes
一键复制 编辑 原始数据 按行查看 历史
FROM node:12.18.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" ]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化