summaryrefslogtreecommitdiffstats
path: root/testing/docker/decision/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'testing/docker/decision/Dockerfile')
-rw-r--r--testing/docker/decision/Dockerfile28
1 files changed, 28 insertions, 0 deletions
diff --git a/testing/docker/decision/Dockerfile b/testing/docker/decision/Dockerfile
new file mode 100644
index 000000000..3f58399fd
--- /dev/null
+++ b/testing/docker/decision/Dockerfile
@@ -0,0 +1,28 @@
+FROM ubuntu:16.04
+MAINTAINER Greg Arndt <garndt@mozilla.com>
+
+# Add worker user
+RUN useradd -d /home/worker -s /bin/bash -m worker
+RUN mkdir /home/worker/artifacts && chown worker:worker /home/worker/artifacts
+
+# %include testing/docker/recipes/tooltool.py
+ADD topsrcdir/testing/docker/recipes/tooltool.py /tmp/tooltool.py
+
+# %include testing/mozharness/external_tools/robustcheckout.py
+ADD topsrcdir/testing/mozharness/external_tools/robustcheckout.py /usr/local/mercurial/robustcheckout.py
+
+# %include testing/docker/recipes/install-mercurial.sh
+ADD topsrcdir/testing/docker/recipes/install-mercurial.sh /tmp/install-mercurial.sh
+
+ADD system-setup.sh /tmp/system-setup.sh
+RUN bash /tmp/system-setup.sh
+
+# %include testing/docker/recipes/run-task
+ADD topsrcdir/testing/docker/recipes/run-task /home/worker/bin/run-task
+
+ENV PATH /home/worker/bin:$PATH
+ENV SHELL /bin/bash
+ENV HOME /home/worker
+
+# Set a default command useful for debugging
+CMD ["/bin/bash", "--login"]