aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pydis_site/apps/content/resources/guides/python-guides/docker-hosting-guide.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/apps/content/resources/guides/python-guides/docker-hosting-guide.md b/pydis_site/apps/content/resources/guides/python-guides/docker-hosting-guide.md
index b6735586..c03ae68e 100644
--- a/pydis_site/apps/content/resources/guides/python-guides/docker-hosting-guide.md
+++ b/pydis_site/apps/content/resources/guides/python-guides/docker-hosting-guide.md
@@ -54,7 +54,7 @@ $ sudo sh get-docker.sh
To tell Docker what it has to do to run the application, we need to create a file named `Dockerfile` in our project's
root.
-1. First we need to specify the *base image*. Doing that will make Docker install some apps we need to run our bot, for
+1. First we need to specify the *base image*, which is the OS that the docker container will be running. Doing that will make Docker install some apps we need to run our bot, for
example the Python interpreter
```dockerfile