From b6d0b8468b6b08c483cdcfd0d843db0ce448c5ba Mon Sep 17 00:00:00 2001 From: Ben Firshman Date: Tue, 28 Jan 2014 00:07:59 +0000 Subject: [PATCH] Fix ordering in dockerfile --- README.md | 2 +- docs/index.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5e83af5b3..45e7568b6 100644 --- a/README.md +++ b/README.md @@ -10,8 +10,8 @@ Define your app's environment with Docker so it can be reproduced anywhere: FROM orchardup/python:2.7 ADD . /code - RUN pip install -r requirements.txt WORKDIR /code + RUN pip install -r requirements.txt CMD python app.py Define the services that make up your app so they can be run together in an isolated environment: diff --git a/docs/index.md b/docs/index.md index e9bc8ed57..7f96a5173 100644 --- a/docs/index.md +++ b/docs/index.md @@ -9,8 +9,8 @@ Define your app's environment with Docker so it can be reproduced anywhere: FROM orchardup/python:2.7 ADD . /code - RUN pip install -r requirements.txt WORKDIR /code + RUN pip install -r requirements.txt CMD python app.py Define the services that make up your app so they can be run together in an isolated environment: