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