log-viewer/emitter/Dockerfile

8 lines
111 B
Docker

FROM python
RUN pip install pymongo
COPY ./emitter.py ./
CMD ["python", "./emitter.py"]
LABEL name="emitter"