From 66def18d9c64cee07d2eaafdfc01417a80ab7b87 Mon Sep 17 00:00:00 2001 From: Jonatas Leon Date: Tue, 27 Jun 2023 10:16:42 -0300 Subject: [PATCH] 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. --- docs/tutorials/asyncio-daemon.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/asyncio-daemon.rst b/docs/tutorials/asyncio-daemon.rst index 5e641739..eb71d4b4 100644 --- a/docs/tutorials/asyncio-daemon.rst +++ b/docs/tutorials/asyncio-daemon.rst @@ -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: