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 |
|
| 24 | FROM openjdk:8u191-jdk-alpine3.9
|
| 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 |
|
| 36 | RUN addgroup onap && adduser -D -G onap clamp
|
| 37 | VOLUME /opt/clamp/config
|
| 38 | RUN mkdir /var/log/onap
|
| 39 | RUN chmod a+rwx /var/log/onap
|
| 40 |
|
| 41 | COPY onap-clamp-backend/clamp.jar /opt/clamp/app.jar
|
| 42 | RUN chmod 700 /opt/clamp/app.jar
|
| 43 |
|
| 44 | RUN chown -R clamp:onap /opt/clamp
|
| 45 |
|
| 46 | RUN apk add fontconfig
|
| 47 | RUN apk add ttf-dejavu
|
| 48 |
|
| 49 | RUN ln -s /usr/lib/libfontconfig.so.1 /usr/lib/libfontconfig.so && \
|
| 50 | ln -s /lib/libuuid.so.1 /usr/lib/libuuid.so.1 && \
|
| 51 | ln -s /lib/libc.musl-x86_64.so.1 /usr/lib/libc.musl-x86_64.so.1
|
| 52 |
|
| 53 | ENV LD_LIBRARY_PATH /usr/lib
|
| 54 |
|
| 55 | USER clamp
|
| 56 | WORKDIR /opt/clamp/
|
| 57 | ENTRYPOINT ["java","-Djava.security.egd=file:/dev/./urandom","-Xms256m", "-Xmx1g", "-jar" ,"./app.jar"]
|