8 lines
111 B
Docker
8 lines
111 B
Docker
FROM python
|
|
RUN pip install pymongo
|
|
|
|
COPY ./emitter.py ./
|
|
CMD ["python", "./emitter.py"]
|
|
|
|
LABEL name="emitter"
|