From 94ebfc43a48370f7985919eb751a14bee890c808 Mon Sep 17 00:00:00 2001 From: Chris Chinchilla Date: Mon, 13 Mar 2023 15:01:27 +0100 Subject: [PATCH] Update language/python/build-images.md Co-authored-by: Craig Osterhout <103533812+craig-osterhout@users.noreply.github.com> --- language/python/build-images.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/python/build-images.md b/language/python/build-images.md index a2dc3ebb9d..be5dcf34fd 100644 --- a/language/python/build-images.md +++ b/language/python/build-images.md @@ -107,7 +107,7 @@ With the `requirements.txt` file inside the image, you can use the `RUN` command RUN pip3 install -r requirements.txt ``` -At this point, you an image based on Python version 3.8 and have installed the dependencies. The next step is to add the source code into the image. Use the `COPY` command as with the `requirements.txt` file. This `COPY` command takes all the files located in the current directory and copies them into the image. +At this point, you have an image based on Python version 3.8 and have installed the dependencies. The next step is to add the source code into the image. Use the `COPY` command as with the `requirements.txt` file. This `COPY` command takes all the files located in the current directory and copies them into the image. ```dockerfile COPY . .