5 lines
83 B
Docker
5 lines
83 B
Docker
FROM python:3
|
|
RUN pip install motor msgpack
|
|
COPY logger.py /
|
|
ENTRYPOINT /logger.py
|