Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1541)

Unified Diff: appengine/chrome_infra_mon_proxy/Dockerfile

Issue 928043005: Monitoring proxy for time series data (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Responded to comments Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: appengine/chrome_infra_mon_proxy/Dockerfile
diff --git a/appengine/chrome_infra_mon_proxy/Dockerfile b/appengine/chrome_infra_mon_proxy/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..8eb1fe3e85a65bbf1730745d651c25c4ec69a67c
--- /dev/null
+++ b/appengine/chrome_infra_mon_proxy/Dockerfile
@@ -0,0 +1,14 @@
+# Dockerfile extending the generic Python image with application files for a
+# single application.
+
+# gcloud preview docker pull <image tag> to make it available locally.
+# To upgrade the image, run:
+# cd docker
+# docker build .
+# docker tag <image-hash> \
+# gcr.io/chrome_infra_mon_proxy/base_python27_<image-hash>
+# gcloud preview docker push <new image tag>
+# And update the image tag below.
+FROM gcr.io/chrome_infra_mon_proxy/base_python27_df11be121945
+
+ADD . /app/

Powered by Google App Engine
This is Rietveld 408576698