From 86da2241d7cdde1695e3e4a726b8e932aab61ce2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EC=9D=B4=ED=95=9C=EC=A2=85/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Engineer/=EC=82=BC=EC=84=B1=EC=A0=84?= =?utf8?q?=EC=9E=90?= Date: Tue, 4 Dec 2018 19:50:42 +0900 Subject: [PATCH] Update Dockerfile (#3856) Update Dockerfile to have python3 in the docker image. Signed-off-by: Hanjoung Lee --- scripts/docker/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/docker/Dockerfile b/scripts/docker/Dockerfile index 59913ef..37e4e1e 100644 --- a/scripts/docker/Dockerfile +++ b/scripts/docker/Dockerfile @@ -16,3 +16,4 @@ RUN apt-get update && apt-get --yes --force-yes install wget RUN wget https://releases.linaro.org/components/toolchain/binaries/6.3-2017.02/arm-linux-gnueabihf/gcc-linaro-6.3.1-2017.02-x86_64_arm-linux-gnueabihf.tar.xz -O gcc.tar.xz -nv RUN tar -xf gcc.tar.xz -C /opt/ && rm -rf gcc.tar.xz ENV PATH "/opt/gcc-linaro-6.3.1-2017.02-x86_64_arm-linux-gnueabihf/bin:$PATH" +RUN apt-get update && apt-get --yes --force-yes install python3 -- 2.7.4