upload pm-support
[ta/cloudtaf.git] / testcases / pm-support / misc / Dockerfile
diff --git a/testcases/pm-support/misc/Dockerfile b/testcases/pm-support/misc/Dockerfile
new file mode 100644 (file)
index 0000000..5890739
--- /dev/null
@@ -0,0 +1,9 @@
+FROM alpine:latest
+
+ADD custom_metrics_test.py /
+
+RUN apk add --no-cache py-pip \
+&& pip install --upgrade pip \
+&& pip install prometheus_client
+
+CMD ["python", "./custom_metrics_test.py"]