842345c28922479794c997b56949be1691a10e63
[multicloud/k8s.git] / deployments / Dockerfile
1 # SPDX-license-identifier: Apache-2.0
2 ##############################################################################
3 # Copyright (c) 2018
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9
10 FROM ubuntu:18.04
11
12 ARG HTTP_PROXY=${HTTP_PROXY}
13 ARG HTTPS_PROXY=${HTTPS_PROXY}
14
15 ENV http_proxy $HTTP_PROXY
16 ENV https_proxy $HTTPS_PROXY
17 ENV no_proxy $NO_PROXY
18
19 EXPOSE 9015
20
21 RUN groupadd -r onap && useradd -r -g onap onap
22
23 WORKDIR /opt/multicloud/k8splugin
24 RUN chown onap:onap /opt/multicloud/k8splugin -R
25
26 ADD --chown=onap ./k8plugin ./
27 ADD --chown=onap ./*.so ./plugins/
28
29 USER onap
30
31 CMD ["./k8plugin"]