Dockerfile
896 Bytes
############################################################
# Dockerfile to build hystrix + turbin Installed Containers
# Based on centos 6.7
# How to build new image: docker build -t yoho-hystrix-qcloud .
# the hystrix alert need to post events to influxdb.yohoops.org.
# nginx version: 1.12.0
############################################################
#base image : ccr.ccs.tencentyun.com/yoho-base/nodejs
FROM ccr.ccs.tencentyun.com/yoho-base/nodejs
MAINTAINER xiaoxiao.hao <xiaoxiao.hao@yoho.cn>
ENV NODE_ENV=production \
NODE_HOME=/home
# COPY turbine configuration files
COPY yoho-yohobuy-apm.tar.gz /home
RUN cd /home && \
mkdir -p /home/yoho-yohobuy-apm && \
tar -xzvf yoho-yohobuy-apm.tar.gz -C /home/yoho-yohobuy-apm && \
rm -rf yoho-yohobuy-apm.tar.gz
WORKDIR /home/yoho-yohobuy-apm
#expose port
EXPOSE 6009
CMD ["node","/home/yoho-yohobuy-apm/app.js"]