kubernetes/examples/cluster-dns/images/frontend/Dockerfile
2015-05-13 22:32:10 -04:00

9 lines
115 B
Docker

FROM python:2.7
RUN pip install requests
COPY . /dns-frontend
WORKDIR /dns-frontend
CMD ["python", "client.py"]