diff options
author | 2022-07-24 11:28:10 +0300 | |
---|---|---|
committer | 2022-07-24 11:28:10 +0300 | |
commit | ff10aa547c2e3589801c73f6898a808dd1688718 (patch) | |
tree | bb1e0be027f93eda6e6c3eaf8732998942d6e60f | |
parent | Additional explanation about docker base image (diff) |
Changed "requirements" to external dependencies
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 c03ae68e..5e2e40a3 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 @@ -61,7 +61,7 @@ root. FROM python:3.10-bullseye ``` -2. Next, we need to copy our requirements to some directory *inside the container*. Let's call it `/app` +2. Next, we need to copy our Python project's external dependencies to some directory *inside the container*. Let's call it `/app` ```dockerfile COPY requirements.txt /app/ |