Browse Source

Fix typo in extends.md

Signed-off-by: Aanand Prasad <[email protected]>
Aanand Prasad 10 years ago
parent
commit
ad9c5ad938
1 changed files with 1 additions and 2 deletions
  1. 1 2
      docs/extends.md

+ 1 - 2
docs/extends.md

@@ -145,8 +145,7 @@ Defining the web application requires the following:
         FROM python:2.7
         ADD . /code
         WORKDIR /code
-        RUN pip install -r
-        requirements.txt
+        RUN pip install -r requirements.txt
         CMD python app.py
 
 4.  Create a Compose configuration file called `common.yml`: