blob: 5b4b8094929e67741f69b96331eaacfb7012e972 [file] [log] [blame]
sebdetc95e8df2019-06-25 11:06:06 +02001###
2# ============LICENSE_START=======================================================
3# ONAP CLAMP
4# ================================================================================
5# Copyright (C) 2018 AT&T Intellectual Property. All rights
6# reserved.
7# ================================================================================
8# Licensed under the Apache License, Version 2.0 (the "License");
9# you may not use this file except in compliance with the License.
10# You may obtain a copy of the License at
11#
12# http://www.apache.org/licenses/LICENSE-2.0
13#
14# Unless required by applicable law or agreed to in writing, software
15# distributed under the License is distributed on an "AS IS" BASIS,
16# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17# See the License for the specific language governing permissions and
18# limitations under the License.
19# ============LICENSE_END============================================
20# ===================================================================
21#
22###
23
sebdet62b188b2020-03-02 15:22:57 -080024FROM onap/policy-jdk-debian:2.0.1
sebdetc95e8df2019-06-25 11:06:06 +020025
26MAINTAINER "The Onap Team"
27LABEL Description="This immage contains alpine, openjdk 11 and clamp"
28
29ARG http_proxy
30ARG https_proxy
31ENV HTTP_PROXY=$http_proxy
32ENV HTTPS_PROXY=$https_proxy
33ENV http_proxy=$HTTP_PROXY
34ENV https_proxy=$HTTPS_PROXY
35
sebdet62b188b2020-03-02 15:22:57 -080036RUN addgroup onap
37RUN useradd -g onap clamp
sebdetc95e8df2019-06-25 11:06:06 +020038VOLUME /opt/clamp/config
39RUN mkdir /var/log/onap
40RUN chmod a+rwx /var/log/onap
41
42COPY onap-clamp-backend/clamp.jar /opt/clamp/app.jar
43RUN chmod 700 /opt/clamp/app.jar
44
45RUN chown -R clamp:onap /opt/clamp
46
sebdetc95e8df2019-06-25 11:06:06 +020047USER clamp
48WORKDIR /opt/clamp/
49ENTRYPOINT ["java","-Djava.security.egd=file:/dev/./urandom","-Xms256m", "-Xmx1g", "-jar" ,"./app.jar"]