From a3d39226a20d3f35e07326b437fc51b607bd68b8 Mon Sep 17 00:00:00 2001 From: Moghedrin Date: Mon, 22 Sep 2014 17:18:54 -0600 Subject: [PATCH] Reflowed text to 80 columns --- python/README-content.md | 5 ++++- python/README.md | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/python/README-content.md b/python/README-content.md index 86000c3f2..bba0cc045 100644 --- a/python/README-content.md +++ b/python/README-content.md @@ -23,7 +23,10 @@ or (if you need to use Python 2): FROM python:2-onbuild CMD [ "python", "./your-daemon-or-script.py" ] -These images include multiple `ONBUILD` triggers which should be all you need to bootstrap most applications. The build will `COPY` a `requirements.txt` file, `RUN pip install` on said file, and then copy the current directory into `/usr/src/app`. +These images include multiple `ONBUILD` triggers, which should be all you need +to bootstrap most applications. The build will `COPY` a `requirements.txt` file, +`RUN pip install` on said file, and then copy the current directory into +`/usr/src/app`. You can then build and run the Docker image: diff --git a/python/README.md b/python/README.md index 980aa40f5..5b216076a 100644 --- a/python/README.md +++ b/python/README.md @@ -30,7 +30,10 @@ or (if you need to use Python 2): FROM python:2-onbuild CMD [ "python", "./your-daemon-or-script.py" ] -These images include multiple `ONBUILD` triggers which should be all you need to bootstrap most applications. The build will `COPY` a `requirements.txt` file, `RUN pip install` on said file, and then copy the current directory into `/usr/src/app`. +These images include multiple `ONBUILD` triggers, which should be all you need +to bootstrap most applications. The build will `COPY` a `requirements.txt` file, +`RUN pip install` on said file, and then copy the current directory into +`/usr/src/app`. You can then build and run the Docker image: