fix: install uv in docker-bootstrap (#31588)
This commit is contained in:
parent
e8daa63d7e
commit
fd9c2b399e
|
|
@ -18,6 +18,9 @@
|
|||
|
||||
set -eo pipefail
|
||||
|
||||
# UV may not be installed in older images
|
||||
pip install uv
|
||||
|
||||
# Make python interactive
|
||||
if [ "$DEV_MODE" == "true" ]; then
|
||||
echo "Reinstalling the app in editable mode"
|
||||
|
|
|
|||
|
|
@ -121,6 +121,13 @@ Here various release tags, github SHA, and latest `master` can be referenced by
|
|||
Refer to the docker-related documentation to learn more about existing tags you can point to
|
||||
from Docker Hub.
|
||||
|
||||
:::note
|
||||
For option #2 and #3, we recommend checking out the release tag from the better repository
|
||||
(ie: `git checkout 4.0.0`) for more guaranteed results. This ensures that the `docker-compose.*.yml`
|
||||
configurations and that the mounted `docker/` scripts are in sync with the image you are
|
||||
looking to fire up.
|
||||
:::
|
||||
|
||||
## `docker compose` tips & configuration
|
||||
|
||||
:::caution
|
||||
|
|
|
|||
Loading…
Reference in New Issue