1
0
Fork 0
mirror of https://github.com/docker/awesome-compose.git synced 2025-04-19 15:28:06 +02:00

django guide: Fix broken link to python 3 parent image

Signed-off-by: Nik Nyby <nikolas@gnu.org>
This commit is contained in:
Nik Nyby 2023-08-12 09:52:47 -04:00 committed by GitHub
parent e6b1d2755f
commit a2b186f896
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,7 +32,7 @@ and a `docker-compose.yml` file. (You can use either a `.yml` or `.yaml` extensi
COPY . /code/
```
This `Dockerfile` starts with a [Python 3 parent image](https://hub.docker.com/r/library/python/tags/3/).
This `Dockerfile` starts with a [Python 3 parent image](https://hub.docker.com/_/python/tags).
The parent image is modified by adding a new `code` directory. The parent image is further modified
by installing the Python requirements defined in the `requirements.txt` file.