mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-11-01 14:22:17 +00:00
9 lines
120 B
Docker
9 lines
120 B
Docker
FROM python:2.7-slim
|
|
|
|
RUN pip install requests
|
|
|
|
COPY . /dns-frontend
|
|
WORKDIR /dns-frontend
|
|
|
|
CMD ["python", "client.py"]
|