mkdir stress ; cd stress
vim dockerfile
FROM centos:latest
MAINTAINER ultralinux "tangqiyong@139.com"
RUN yum install wget -y && \
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo && \
yum -y install stress
docker build -t centos:stress .