Skip to content

Commit 66def18

Browse files
authored
Fix docker image version in asyncio daemon tutorial
In asyncio daemon tutorial, at the part before define the `Dockerfile` content, it's said it will use `python:3.9-buster`, but in `Dockerfile`, it uses `python:3.10-buster` in `FROM` tag. This commit set both as `python:3.10-buster` image version.
1 parent cc2304e commit 66def18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/tutorials/asyncio-daemon.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Put next lines into the ``requirements.txt`` file:
129129
pytest-cov
130130
131131
Second, we need to create the ``Dockerfile``. It will describe the daemon's build process and
132-
specify how to run it. We will use ``python:3.9-buster`` as a base image.
132+
specify how to run it. We will use ``python:3.10-buster`` as a base image.
133133

134134
Put next lines into the ``Dockerfile`` file:
135135

0 commit comments

Comments
 (0)