Metric exporter for Pinecrypt Gateway
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM python
|
|
MAINTAINER Pinecrypt Labs <info@pinecrypt.com>
|
|
RUN pip install sanic aiohttp
|
|
ADD exporter.py /exporter.py
|
|
CMD /exporter.py
|
|
|