mirror of
https://github.com/optim-enterprises-bv/kubernetes.git
synced 2025-11-17 06:55:10 +00:00
9 lines
115 B
Docker
9 lines
115 B
Docker
FROM python:2.7
|
|
|
|
RUN pip install requests
|
|
|
|
COPY . /dns-frontend
|
|
WORKDIR /dns-frontend
|
|
|
|
CMD ["python", "client.py"]
|