You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
411 B

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. #FROM shihxuancheng/wildfly-base:latest
  2. ARG BASE_IMAGE=khhwtml02t.wanhai.com:8182/jboss/wildfly-base:latest
  3. FROM $BASE_IMAGE
  4. #prepare tmp dir
  5. COPY --chown=jboss . ${JBOSS_HOME}/config
  6. #customize modules
  7. RUN chmod -R 777 ${JBOSS_HOME}/config && cd ${JBOSS_HOME}/config/modules && ./make_modules.sh
  8. #customize settings
  9. RUN cd ${JBOSS_HOME}/config/initial && ./setup.sh
  10. #cleanup
  11. RUN rm -rf ${JBOSS_HOME}/config