From 73e5454be320bc8d62387c3360f20cfff65b3b9d Mon Sep 17 00:00:00 2001 From: Sameer Naik Date: Mon, 19 May 2014 17:46:34 +0530 Subject: [PATCH] Update apt cache before installing software-properties-common fixes #64 --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a4624c8e..e62d25a1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,8 @@ FROM sameersbn/ubuntu:14.04.20140508 MAINTAINER sameer@damagehead.com -RUN apt-get install -y software-properties-common && \ +RUN apt-get update && \ + apt-get install -y software-properties-common && \ add-apt-repository -y ppa:git-core/ppa && \ add-apt-repository -y ppa:brightbox/ruby-ng && \ apt-get update && \