From: Ingy döt Net Date: Thu, 15 Sep 2016 05:11:08 +0000 (-0700) Subject: Dockerfile for creating a test environment X-Git-Tag: upstream/0.2.1^2~48 X-Git-Url: http://andersk.mit.edu/gitweb/libyaml.git/commitdiff_plain/d1de67e79c869fcb5494e6dd25d8ea5f33afc5d7?hp=3c80be99fb18f3ee18af37221a3b0c4760e8df06 Dockerfile for creating a test environment Uses ubuntu 16.04. `make test` is not yet working. --- diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..18030d8 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,14 @@ +FROM ubuntu:16.04 +RUN apt-get update && \ + apt-get install -y \ + autoconf \ + build-essential \ + git \ + gist \ + libtool \ + tig \ + vim + +WORKDIR /libyaml + +CMD ["bash"]