Dockerfile_server 516 B

1234567891011121314151617181920212223
  1. # VERSION 1.0
  2. # pull:
  3. # docker pull registry.svicloud.com/wisecloud/cas/server:v0.1
  4. # build:
  5. # docker build -f Dockerfile_data -t registry.svicloud.com/wisecloud/cas/server:v0.1 .
  6. FROM registry.9418.club/os/svi-centos:latest
  7. MAINTAINER dongcj "dongchaojun@svi-tech.com.cn"
  8. ENV MODULE_HOME /opt/wisecloud/cas/cas_server
  9. # install the pg client(change to your logic)
  10. RUN yum -y install postgresql
  11. # change path to app home
  12. WORKDIR ${MODULE_HOME}
  13. # startup, last "tail" is necessary
  14. CMD ./start.sh && tail