#Dockerfile ONLY FOR DEV/TEST (it deploys all NSP components together in 1 wildfly container) ARG BASE_TAG=3.0.0-wildfly21.rc3 FROM registry.nspop.dk/platform/nsp:${BASE_TAG} # Copy configuration files COPY etc/wildfly /pack/wildfly/ # Copy the war file to the deployment directory COPY cbs-service/target/cbs-service.war /pack/wildfly/standalone/deployments/ COPY cbs-datafetcher/target/cbs-datafetcher.war /pack/wildfly/standalone/deployments/ RUN echo ".*/(isalive)$" > /pack/wildfly/modules/system/layers/base/dk/sds/nsp/accesshandler/main/security.skip RUN echo '.*/(isalive)$' > /pack/wildfly/modules/system/layers/base/dk/sds/nsp/accesshandler/main/handler.skip