From 181fb9edb67b4c0483d83b56057e16faa323ddb8 Mon Sep 17 00:00:00 2001 From: Alexander Ljungberg Date: Mon, 10 Sep 2018 10:39:07 +0100 Subject: [PATCH] New: Dockerfile which helps test bootstrap itself. --- Tests/System/Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Tests/System/Dockerfile diff --git a/Tests/System/Dockerfile b/Tests/System/Dockerfile new file mode 100644 index 000000000..1c40ee73f --- /dev/null +++ b/Tests/System/Dockerfile @@ -0,0 +1,10 @@ +FROM ubuntu:18.04 + +RUN apt-get update && apt-get install -y \ + curl \ + default-jre \ + unzip + +ADD bootstrap.sh /tmp/cappuccino_bootstrap.sh + +RUN chmod a+x /tmp/cappuccino_bootstrap.sh && /tmp/cappuccino_bootstrap.sh --noprompt --directory /usr/local/narwhal