Fix ordering in dockerfile

This commit is contained in:
Ben Firshman 2014-01-28 00:07:59 +00:00
parent 5e5bd939be
commit b6d0b8468b
2 changed files with 2 additions and 2 deletions

View File

@ -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:

View File

@ -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: