# docker build -t compare .
# docker run -it -p 9002:9002 compare

FROM python:3

ADD postVSmaria.py /

RUN pip install prometheus_client
RUN pip install psycopg2
RUN pip install mariadb

EXPOSE 9002

CMD [ "./postVSmaria.py"]
