Triage Bot 1.0 (#3036)
This is the code that's been running for a few weeks now. It's time to get it onto Appengine.
diff --git a/triage_bot/Dockerfile b/triage_bot/Dockerfile
new file mode 100644
index 0000000..4618011
--- /dev/null
+++ b/triage_bot/Dockerfile
@@ -0,0 +1,16 @@
+# Copyright 2022 The Flutter Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+# Dart Docker official images can be found here: https://hub.docker.com/_/dart
+FROM dart:beta@sha256:d19a5c7453c9ff7f977dfc6956a1a61042386c5572a4dcc249c5b3705b10d41f
+
+WORKDIR /app
+
+# Copy app source code (except anything in .dockerignore).
+COPY . .
+RUN dart pub get
+
+# Start server.
+EXPOSE 8213
+CMD ["/usr/lib/dart/bin/dart", "/app/bin/triage_bot.dart"]