Dockerfile
794 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/node
FROM ccr.ccs.tencentyun.com/yoho-base/node:10.4.1-alpine-fix
MAINTAINER xiaoxiao.hao <xiaoxiao.hao@yoho.cn>
ENV NODE_ENV=production \
NODE_HOME=/home
RUN cd /home && \
mkdir -p /home/yohobuywap-node-activity
COPY . /home/yohobuywap-node-activity
WORKDIR /home/yohobuywap-node-activity
#expose port
EXPOSE 6001
CMD ["node","/home/yohobuywap-node-activity/app.js"]