upload pm-support
[ta/cloudtaf.git] / testcases / pm-support / misc / Dockerfile
1 FROM alpine:latest
2
3 ADD custom_metrics_test.py /
4
5 RUN apk add --no-cache py-pip \
6 && pip install --upgrade pip \
7 && pip install prometheus_client
8
9 CMD ["python", "./custom_metrics_test.py"]