From 0cc270e6df3eca352eb8c72b602b7d5a0633b086 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Thu, 2 Apr 2015 17:47:28 +0200 Subject: [PATCH] reorder Dockerfile --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 58c67f109b..4123d71a1d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,8 @@ FROM ubuntu:14.04 +ENV GCC_ARM_VERSION 4.9.3.2015q1-0trusty13 + # add and update package repositories RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys FE324A81C208C89497EFC6246D1D8367A3421AFB @@ -10,8 +12,8 @@ RUN echo "deb http://ppa.launchpad.net/terry.guo/gcc-arm-embedded/ubuntu trusty # install build tools and dependencies -ENV GCC_ARM_VERSION 4.9.3.2015q1-0trusty13 -RUN apt-get install -y build-essential git gcc-arm-none-eabi=$GCC_ARM_VERSION python +RUN apt-get install -y build-essential git python +RUN apt-get install -y gcc-arm-none-eabi=$GCC_ARM_VERSION # clone the source code