Skip to content

Commit

Permalink
Address feedback for Docker integration guide (#6235)
Browse files Browse the repository at this point in the history
  • Loading branch information
zanieb authored Aug 19, 2024
1 parent fac2cb8 commit 4b501a1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/guides/integration/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
```
Expand Down

0 comments on commit 4b501a1

Please sign in to comment.