9 lines
313 B
Text
9 lines
313 B
Text
FROM imixs/imixs-office-workflow:5.1.0
|
|
|
|
# Deploy artefact
|
|
RUN rm -r /opt/jboss/wildfly/standalone/deployments/*
|
|
COPY ./*-app/target/*.war /opt/jboss/wildfly/standalone/deployments/
|
|
|
|
# Run in Debug Mode
|
|
CMD ["/opt/jboss/wildfly/bin/standalone.sh", "-b", "0.0.0.0", "-bmanagement", "0.0.0.0", "--debug", "*:8787"]
|
|
|