From d3e78082f832c0aa954bdcff992e92397af5fc67 Mon Sep 17 00:00:00 2001 From: thosakwe Date: Sat, 14 Jan 2017 19:52:41 -0500 Subject: [PATCH] 1.21.0 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c550e4e5..336579b4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,14 +1,14 @@ FROM ubuntu:14.04 MAINTAINER Tobe O -# Install Dart SDK 1.21 +# Install Dart SDK 1.21.0 RUN sudo apt-get update RUN sudo apt-get install -y apt-transport-https RUN sudo apt-get install -y curl RUN sudo sh -c 'curl https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -' RUN sudo sh -c 'curl https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_stable.list > /etc/apt/sources.list.d/dart_stable.list' RUN sudo apt-get update -RUN sudo apt-get install -y dart=1.21.* +RUN sudo apt-get install -y dart=1.21.0 RUN export PATH="/usr/lib/dart/bin:$PATH" # Copy necessary files