5 lines
86 B
Docker
5 lines
86 B
Docker
FROM python
|
|
RUN pip install motor sanic
|
|
ADD exporter.py /exporter.py
|
|
CMD /exporter.py
|