From 9cf845eb706d444f9166504239ad108440837473 Mon Sep 17 00:00:00 2001 From: Alexander Morozov Date: Mon, 13 Jul 2015 19:54:01 -0700 Subject: [PATCH] Use official python:2.7 image as base dockerfiles/ repository was removed from hub.docker.com Signed-off-by: Alexander Morozov --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e16e45e..a2c1802 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM dockerfile/python +FROM python:2.7 MAINTAINER coopermaa77@gmail.com # arduino for Arduino IDE distribution @@ -12,4 +12,4 @@ WORKDIR /app # Define entry point and default command. ENTRYPOINT ["ino"] -CMD ["--help"] \ No newline at end of file +CMD ["--help"]