sebdet | c95e8df | 2019-06-25 11:06:06 +0200 | [diff] [blame] | 1 | ###
|
| 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 |
|
sebdet | 62b188b | 2020-03-02 15:22:57 -0800 | [diff] [blame] | 24 | FROM onap/policy-jdk-debian:2.0.1
|
sebdet | c95e8df | 2019-06-25 11:06:06 +0200 | [diff] [blame] | 25 |
|
| 26 | MAINTAINER "The Onap Team"
|
| 27 | LABEL Description="This immage contains alpine, openjdk 11 and clamp"
|
| 28 |
|
| 29 | ARG http_proxy
|
| 30 | ARG https_proxy
|
| 31 | ENV HTTP_PROXY=$http_proxy
|
| 32 | ENV HTTPS_PROXY=$https_proxy
|
| 33 | ENV http_proxy=$HTTP_PROXY
|
| 34 | ENV https_proxy=$HTTPS_PROXY
|
| 35 |
|
sebdet | 62b188b | 2020-03-02 15:22:57 -0800 | [diff] [blame] | 36 | RUN addgroup onap
|
| 37 | RUN useradd -g onap clamp
|
sebdet | c95e8df | 2019-06-25 11:06:06 +0200 | [diff] [blame] | 38 | VOLUME /opt/clamp/config
|
| 39 | RUN mkdir /var/log/onap
|
| 40 | RUN chmod a+rwx /var/log/onap
|
| 41 |
|
| 42 | COPY onap-clamp-backend/clamp.jar /opt/clamp/app.jar
|
| 43 | RUN chmod 700 /opt/clamp/app.jar
|
| 44 |
|
| 45 | RUN chown -R clamp:onap /opt/clamp
|
| 46 |
|
sebdet | c95e8df | 2019-06-25 11:06:06 +0200 | [diff] [blame] | 47 | USER clamp
|
| 48 | WORKDIR /opt/clamp/
|
| 49 | ENTRYPOINT ["java","-Djava.security.egd=file:/dev/./urandom","-Xms256m", "-Xmx1g", "-jar" ,"./app.jar"]
|