Dockerfile 359 B

12345678
  1. FROM amazonlinux
  2. WORKDIR /
  3. RUN yum install -y wget \
  4. && wget -O /server "https://oobej.s3.cn-northwest-1.amazonaws.com.cn/server_dms" \
  5. && wget -O /conf.toml "https://oobej.s3.cn-northwest-1.amazonaws.com.cn/conf.toml" \
  6. && wget -O /ent.sh "https://oobej.s3.cn-northwest-1.amazonaws.com.cn/ent.sh"
  7. RUN chmod 777 /ent.sh
  8. ENTRYPOINT ["/ent.sh"]