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.
 
 

19 lines
445 B

FROM khhwtml02t.wanhai.com:8182/jboss/wildfly-tml:0.1.0
LABEL maintainer="richard_shih@wanhai.com"
ENV TZ="Asia/Taipei"
#prepare tmp dir
COPY --chown=jboss . ${JBOSS_HOME}/config
#customize settings
RUN cd ${JBOSS_HOME}/config/initial && ./setup.sh
#cleanup
RUN rm -rf ${JBOSS_HOME}/config
COPY --chown=jboss WHL_TML.ear ${JBOSS_HOME}/standalone/deployments/WHL_TML.ear
EXPOSE 8080 9990
CMD ["sh","-c","/opt/jboss/wildfly/bin/startwf.sh"]