Address feedback for Docker integration guide (#6235)

This commit is contained in:
Zanie Blue 2024-08-19 17:52:39 -05:00 committed by GitHub
parent fac2cb8aac
commit 4b501a1393
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -74,13 +74,13 @@ ENV PATH="/app/.venv/bin:$PATH"
Or, you can use `uv run` to run commands in the environment:
```dockerfile
RUN uv run /app/some_script.py
```dockerfile title="Dockerfile"
RUN uv run some_script.py
```
And, to start your application by default:
```dockerfile
```dockerfile title="Dockerfile"
# Presuming there is a `my_app` command provided by the project
CMD ["uv", "run", "my_app"]
```