nim: update Dockerfile to use version 0.12
authorJoel Martin <github@martintribe.org>
Mon, 23 Nov 2015 20:48:56 +0000 (15:48 -0500)
committerJoel Martin <github@martintribe.org>
Mon, 23 Nov 2015 20:48:56 +0000 (15:48 -0500)
nim/Dockerfile

index 3765796..2f09188 100644 (file)
@@ -26,10 +26,10 @@ RUN apt-get -y install g++
 
 # Nim
 RUN apt-get -y install xz-utils
-RUN cd /tmp && curl -O http://nim-lang.org/download/nim-0.11.0.tar.xz \
-    && tar xvJf /tmp/nim-0.11.0.tar.xz && cd nim-0.11.0 \
+RUN cd /tmp && curl -O http://nim-lang.org/download/nim-0.12.0.tar.xz \
+    && tar xvJf /tmp/nim-0.12.0.tar.xz && cd nim-0.12.0 \
     && make && sh install.sh /usr/local/bin \
     && cp bin/nim /usr/local/bin/ \
-    && rm -r /tmp/nim-0.11.0
+    && rm -r /tmp/nim-0.12.0
 
 ENV HOME /mal