Merge "Remove deployment plugin"
[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 8081
20
21 RUN groupadd -r onap && useradd -r -g onap onap
22 RUN apt-get update && apt-get install -y -qq apt-transport-https curl \
23  && echo "deb https://packages.wand.net.nz xenial main" > /etc/apt/sources.list.d/wand.list \
24  && curl https://packages.wand.net.nz/keyring.gpg -o /etc/apt/trusted.gpg.d/wand.gpg \
25  && apt-get update && apt install -y -qq ovn-common
26
27 WORKDIR /opt/multicloud/k8splugin
28 RUN chown onap:onap /opt/multicloud/k8splugin -R
29
30 ADD --chown=onap ./k8plugin ./
31 ADD --chown=onap ./*.so ./plugins/
32
33 USER onap
34
35 CMD ["./k8plugin"]