diff options
author | 2022-07-24 11:27:32 +0300 | |
---|---|---|
committer | 2022-07-24 11:27:32 +0300 | |
commit | ab6c82e5f6f6681fd73daeabfb8c4019ef3eb086 (patch) | |
tree | c2806ecd012e0dd17d09edbce8b05d0fc304791f | |
parent | Updated a docker guide (diff) |
Additional explanation about docker base image
Co-authored-by: Robin <[email protected]>
-rw-r--r-- | pydis_site/apps/content/resources/guides/python-guides/docker-hosting-guide.md | 2 |
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 |