Merge "Bump vagrant version to 2.2.0"
[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 debian:jessie
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 ENV CSAR_DIR "/opt/csar"
20 ENV KUBE_CONFIG_DIR "/opt/kubeconfig"
21 ENV DATABASE_TYPE "consul"
22 ENV DATABASE_IP "127.0.0.1"
23
24 EXPOSE 8081
25
26 WORKDIR /opt/multicloud/k8s
27 ADD ./k8plugin ./
28 ADD ./*.so ./
29
30 CMD ["./k8plugin"]