From 47d2323fdc5479fc8257b83a85c0eb6f73862410 Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Fri, 3 Oct 2014 16:26:36 +0200 Subject: [PATCH] Fixed README, ADD has to be called directly --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0cea124..cda4196 100644 --- a/README.md +++ b/README.md @@ -21,8 +21,8 @@ Create a `Dockerfile` similar to the following in your application code folder: ``` FROM luzifer/php5-nginx -ONBUILD RUN mkdir -p /application -ONBUILD ADD . /application +RUN mkdir -p /application +ADD . /application EXPOSE 80 CMD ["/usr/local/bin/container-run.sh"]