From 958fb121b0a3f27acc5b1c8253b4b47e53eaf770 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Germ=C3=A1n=20Larra=C3=ADn?= Date: Sat, 22 Apr 2017 03:59:02 -0300 Subject: [PATCH] django.md: fix Python image version (#2991) Dockerfile's base image was not consistent the the explanation below. --- compose/django.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compose/django.md b/compose/django.md index 516c9a5154..b1cd901834 100644 --- a/compose/django.md +++ b/compose/django.md @@ -34,8 +34,8 @@ and a `docker-compose.yml` file. (You can use either a `.yml` or `.yaml` extensi RUN pip install -r requirements.txt ADD . /code/ - This `Dockerfile` starts with a Python 2.7 base image. The base image is - modified by adding a new `code` directory. The base image is further modified + This `Dockerfile` starts with a [Python 3 base image](https://hub.docker.com/r/library/python/tags/3/). + The base image is modified by adding a new `code` directory. The base image is further modified by installing the Python requirements defined in the `requirements.txt` file. 4. Save and close the `Dockerfile`.