video-iac/docker/coturn-dns/Dockerfile

8 lines
190 B
Docker
Raw Permalink Normal View History

2021-11-12 17:31:53 +00:00
FROM python:3
WORKDIR /app
2021-11-15 16:10:29 +00:00
COPY docker/coturn-dns/requirements.txt requirements.txt
2021-11-12 17:31:53 +00:00
RUN pip3 install -r requirements.txt
2021-11-15 16:10:29 +00:00
COPY docker/coturn-dns/. .
2021-11-12 17:31:53 +00:00
CMD [ "python3", "pod-node-register.py"]