danielhanrahan | 608e625 | 2021-08-20 16:55:19 +0100 | [diff] [blame] | 1 | #------------------------------------------------------------------------------- |
| 2 | # ============LICENSE_START======================================================= |
| 3 | # Copyright (C) 2021 Nordix Foundation. |
| 4 | # ================================================================================ |
| 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 | |
liamfallon | 27514af | 2021-11-25 11:41:25 +0000 | [diff] [blame^] | 21 | FROM onap/policy-jre-alpine:2.4.0 |
danielhanrahan | 608e625 | 2021-08-20 16:55:19 +0100 | [diff] [blame] | 22 | |
| 23 | LABEL maintainer="Policy Team" |
| 24 | |
| 25 | ARG POLICY_LOGS=/var/log/onap/policy/gui |
| 26 | |
| 27 | ENV POLICY_LOGS=$POLICY_LOGS |
| 28 | ENV POLICY_HOME=$POLICY_HOME/gui |
danielhanrahan | 608e625 | 2021-08-20 16:55:19 +0100 | [diff] [blame] | 29 | |
| 30 | RUN mkdir -p $POLICY_HOME $POLICY_LOGS $POLICY_HOME/bin $POLICY_HOME/lib && \ |
| 31 | chown -R policy:policy $POLICY_HOME $POLICY_LOGS && \ |
| 32 | apk update && \ |
danielhanrahan | 69d300a | 2021-09-08 17:55:13 +0100 | [diff] [blame] | 33 | apk add --no-cache nginx |
danielhanrahan | 608e625 | 2021-08-20 16:55:19 +0100 | [diff] [blame] | 34 | |
danielhanrahan | 69d300a | 2021-09-08 17:55:13 +0100 | [diff] [blame] | 35 | COPY --chown=policy:policy etc/ /etc/ |
| 36 | COPY --chown=policy:policy policy-gui.sh $POLICY_HOME/bin/ |
danielhanrahan | 9fd5ad2 | 2021-09-17 18:58:20 +0100 | [diff] [blame] | 37 | ADD --chown=policy:policy index.html /maven/gui-clamp-html.tar.gz /usr/share/nginx/html/ |
danielhanrahan | 69d300a | 2021-09-08 17:55:13 +0100 | [diff] [blame] | 38 | RUN ln -sf /dev/stdout /var/log/nginx/access.log && \ |
danielhanrahan | 608e625 | 2021-08-20 16:55:19 +0100 | [diff] [blame] | 39 | ln -sf /dev/stderr /var/log/nginx/error.log && \ |
| 40 | touch /var/run/nginx.pid && \ |
danielhanrahan | 69d300a | 2021-09-08 17:55:13 +0100 | [diff] [blame] | 41 | chown -R policy:policy /etc/nginx /usr/share/nginx /var/lib/nginx /var/log/nginx /var/run/nginx.pid && \ |
| 42 | chmod 755 $POLICY_HOME/bin/*.sh |
danielhanrahan | 608e625 | 2021-08-20 16:55:19 +0100 | [diff] [blame] | 43 | |
| 44 | USER policy |
| 45 | WORKDIR $POLICY_HOME/bin |
| 46 | ENTRYPOINT [ "./policy-gui.sh" ] |
danielhanrahan | 1f68035 | 2021-09-08 10:49:44 +0100 | [diff] [blame] | 47 | EXPOSE 2443 |