
The pip3 install command does not use pinned versions for the Python packages. This is risky for Docker builds as it can lead to non-reproducible images if a dependency is updated. To ensure that the Docker image is consistent and reliable over time, all dependencies should be pinned to specific versions. A common practice is to use a requirements.txt file.
Originally posted by @gemini-code-assist[bot] in #22 (comment)
The
pip3 installcommand does not use pinned versions for the Python packages. This is risky for Docker builds as it can lead to non-reproducible images if a dependency is updated. To ensure that the Docker image is consistent and reliable over time, all dependencies should be pinned to specific versions. A common practice is to use arequirements.txtfile.Originally posted by @gemini-code-assist[bot] in #22 (comment)