aboutsummaryrefslogtreecommitdiffstats
path: root/dox-sequence-diagram-ui/src/main/webapp/WEB-INF/web.xml
blob: c723615a7a26d5f0a329e6cdfeda6b626dba4144 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="Amdocs_ES6_Blueprint" version="3.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns="http://java.sun.com/xml/ns/javaee"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">

	<display-name>Amdocs ES6 Blueprint</display-name>

	<welcome-file-list>
		<welcome-file>index.html</welcome-file>
	</welcome-file-list>

</web-app>
apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # SPDX-License-Identifier: Apache-2.0 # ============LICENSE_END========================================================= #------------------------------------------------------------------------------- FROM busybox AS tarball RUN mkdir /packages /extracted COPY /maven/apex-pdp-package-full.tar.gz /packages/ RUN tar xvzf /packages/apex-pdp-package-full.tar.gz --directory /extracted/ FROM onap/policy-jdk-alpine:3.1.4-SNAPSHOT LABEL maintainer="Policy Team" LABEL org.opencontainers.image.title="Policy APEX PDP" LABEL org.opencontainers.image.description="Policy APEX PDP image based on Alpine" LABEL org.opencontainers.image.url="https://github.com/onap/policy-apex-pdp" LABEL org.opencontainers.image.vendor="ONAP Policy Team" LABEL org.opencontainers.image.licenses="Apache-2.0" LABEL org.opencontainers.image.created="${git.build.time}" LABEL org.opencontainers.image.version="${git.build.version}" LABEL org.opencontainers.image.revision="${git.commit.id.abbrev}" ARG POLICY_LOGS=/var/log/onap/policy/apex-pdp ENV POLICY_HOME=/opt/app/policy/apex-pdp ENV POLICY_LOGS=$POLICY_LOGS ENV APEX_HOME=$POLICY_HOME ENV APEX_USER=policy USER root RUN mkdir -p $POLICY_HOME $POLICY_LOGS && \ chown -R policy:policy $POLICY_HOME $POLICY_LOGS COPY --chown=policy:policy --from=tarball /extracted $POLICY_HOME USER $APEX_USER ENV PATH $POLICY_HOME/bin:$PATH WORKDIR $APEX_HOME ENTRYPOINT [ "/bin/sh" ]