Skip to content

Commit 064267c

Browse files
authored
Merge pull request #227 from paatre/minor-chapter-10-asciidoc-fixes
Minor chapter 10 asciidoc fixes
2 parents 3e3ea85 + 818aada commit 064267c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

chapter_10_production_readiness.asciidoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ Django, Gunicorn and Whitenoise:
290290
[subs="specialcharacters,quotes"]
291291
----
292292
$ *pip freeze | grep -i django*
293-
Django==4.2.7
293+
Django==4.2.11
294294
295295
$ *pip freeze | grep -i django >> requirements.txt*
296296
$ *pip freeze | grep -i gunicorn >> requirements.txt*
@@ -351,7 +351,7 @@ TIP: Itamar Turner-Traurig has a great guide to
351351

352352
Now let's see how we use that requirements file in our Dockerfile:
353353

354-
.Dockerfile (ch09l005)
354+
.Dockerfile (ch10l005)
355355
====
356356
[source,dockerfile]
357357
----
@@ -371,9 +371,9 @@ CMD python manage.py runserver
371371
----
372372
====
373373

374-
<3> We COPY our requirements file in, just like the src folder.
374+
<1> We COPY our requirements file in, just like the src folder.
375375

376-
<4> Now instead of just installing Django, we install all our dependencies
376+
<2> Now instead of just installing Django, we install all our dependencies
377377
by pointing pip at the _requirements.txt_ using the `-r` flag.
378378
Notice the `-r`.
379379

0 commit comments

Comments
 (0)