# installs android platform ARG WILDFLY_IMAGE=jboss/wildfly:17.0.1.Final FROM $WILDFLY_IMAGE # we need wsdl and cert for consuming the eID SOAP service COPY wsdl/* /opt/jboss/ # copy the needed war into the image COPY dist/* /opt/jboss/wildfly/standalone/deployments/ # copy the config for the server into the image COPY config/ssa-server.conf /opt/jboss/ssa-server.conf EXPOSE 9990