From bdb4f009611e7806e7f00cf02e35bf3be9227989 Mon Sep 17 00:00:00 2001 From: Xiaofeng Date: Thu, 23 Jun 2016 10:20:07 +0800 Subject: [PATCH] For easily using jsonnet in test --- Dockerfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..8babe6a6d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +FROM ubuntu:latest + +WORKDIR /opt + +RUN apt-get update && \ + apt-get install -y git build-essential autoconf libtool make + +# Install jsonnet +RUN git clone https://github.com/google/jsonnet && \ + cd jsonnet && \ + make && \ + cd ..