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.
This commit is contained in:
Jonatas Leon 2023-06-27 10:16:42 -03:00 committed by GitHub
parent cc2304e46e
commit 66def18d9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -129,7 +129,7 @@ Put next lines into the ``requirements.txt`` file:
pytest-cov
Second, we need to create the ``Dockerfile``. It will describe the daemon's build process and
specify how to run it. We will use ``python:3.9-buster`` as a base image.
specify how to run it. We will use ``python:3.10-buster`` as a base image.
Put next lines into the ``Dockerfile`` file: