8 lines
333 B
Text
8 lines
333 B
Text
FROM imixs/imixs-office-workflow:5.1.5-wildfly-29.0.1.Final-jdk17
|
|
|
|
# Deploy artefact
|
|
RUN rm -r /opt/jboss/wildfly/standalone/deployments/*
|
|
COPY ./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"]
|