Files
kubernetes/examples/cluster-dns/images/frontend/Dockerfile
Dr. Stefan Schimanski fe6559829a Base cluster-dns on python:2.7-slim image
- 79 instead of 263 MB
- does not trigger the docker-pull freeze bug
2015-11-11 17:15:53 +01:00

9 lines
120 B
Docker

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