From 81af926a780da7859099e73528e56616f3921a08 Mon Sep 17 00:00:00 2001 From: Bryan Bishop Date: Mon, 24 Nov 2014 10:56:23 -0600 Subject: [PATCH] remove Dockerfile step for mkdir /build The ADD command will create /build automatically, so the RUN mkdir step can be safely removed. Also, this has the benefit of reducing the number of steps in the Dockerfile which is helpful for not as quickly hitting the 127 layer limit. --- image/Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/image/Dockerfile b/image/Dockerfile index 369d0fa..4571e5c 100644 --- a/image/Dockerfile +++ b/image/Dockerfile @@ -2,7 +2,6 @@ FROM ubuntu:14.04 MAINTAINER Phusion ENV HOME /root -RUN mkdir /build ADD . /build RUN /build/prepare.sh && \