Skip to content

Commit

Permalink
Fix Docker code example (#1345)
Browse files Browse the repository at this point in the history
The Dockerfile code example was broken for me - this PR fixes this
error.
  • Loading branch information
dabeeeenster authored Aug 21, 2024
1 parent 2c69050 commit ce3c91a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/guide/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ This guide requires some familiarity with Docker and Dockerfiles.

WORKDIR /app
COPY requirements.lock ./
uv pip install --no-cache -r requirements.lock
RUN uv pip install --no-cache --system -r requirements.lock

COPY src .
CMD python main.py
Expand Down

0 comments on commit ce3c91a

Please sign in to comment.