summaryrefslogtreecommitdiffstats
path: root/kubernetes/readiness/docker/init/Dockerfile
blob: b0fd68b44ebb2db7631db31edca324927785b301 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from ubuntu:16.04

ENV no_proxy "localhost,127.0.0.1,.cluster.local,$KUBERNETES_SERVICE_HOST"
# Setup Corporate proxy
ENV https_proxy http://genproxy.amdocs.com:8080/
ENV http_proxy http://genproxy.amdocs.com:8080/

# Additional packages
RUN apt-get update
RUN apt-get install -y apt-utils git wget curl dnsutils python python-pip jq net-tools coreutils vim

RUN pip install requests pyyaml kubernetes


ENV CERT="/var/run/secrets/kubernetes.io/serviceaccount/ca.crt"
ENV TOKEN="/var/run/secrets/kubernetes.io/serviceaccount/token"

COPY ready.py /root/ready.py
RUN chmod a+x /root/ready.py
ENTRYPOINT /root/ready.py