blob: 85b62676e8b03d8b30d809514e3c68e083f04ef6 [file] [log] [blame]
danielhanrahan608e6252021-08-20 16:55:19 +01001#-------------------------------------------------------------------------------
2# ============LICENSE_START=======================================================
danielhanrahane56f1272022-01-28 11:41:38 +00003# Copyright (C) 2021-2022 Nordix Foundation.
danielhanrahan608e6252021-08-20 16:55:19 +01004# ================================================================================
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
17# SPDX-License-Identifier: Apache-2.0
18# ============LICENSE_END=========================================================
19#-------------------------------------------------------------------------------
20
liamfallona03e32e2022-11-29 15:22:00 +000021FROM onap/policy-jre-alpine:2.4.5-SNAPSHOT
danielhanrahan608e6252021-08-20 16:55:19 +010022
23LABEL maintainer="Policy Team"
24
25ARG POLICY_LOGS=/var/log/onap/policy/gui
26
27ENV POLICY_LOGS=$POLICY_LOGS
28ENV POLICY_HOME=$POLICY_HOME/gui
danielhanrahan608e6252021-08-20 16:55:19 +010029
danielhanrahane56f1272022-01-28 11:41:38 +000030RUN mkdir -p $POLICY_HOME $POLICY_LOGS $POLICY_HOME/bin $POLICY_HOME/etc/ssl && \
31 chown -R policy:policy $POLICY_HOME $POLICY_LOGS
danielhanrahan608e6252021-08-20 16:55:19 +010032
danielhanrahane56f1272022-01-28 11:41:38 +000033COPY --chown=policy:policy /maven/app.jar /app/
danielhanrahan69d300a2021-09-08 17:55:13 +010034COPY --chown=policy:policy policy-gui.sh $POLICY_HOME/bin/
danielhanrahane56f1272022-01-28 11:41:38 +000035COPY --chown=policy:policy config/application.yml $POLICY_HOME/etc/
36COPY --chown=policy:policy config/logback.xml $POLICY_HOME/etc/
37RUN chmod 755 $POLICY_HOME/bin/*.sh
danielhanrahan608e6252021-08-20 16:55:19 +010038
39USER policy
40WORKDIR $POLICY_HOME/bin
41ENTRYPOINT [ "./policy-gui.sh" ]
danielhanrahan1f680352021-09-08 10:49:44 +010042EXPOSE 2443