Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ WORKDIR /app
# Copy project metadata
COPY pyproject.toml uv.lock* ./

# Copy source
# Copy source and config
COPY tim ./tim
COPY config ./config

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch!

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! It was a sneaky one. Couldn't figure out why things were "fine" in production.... until realizing we just hadn't hit a code path that required this file yet 😅.


# Install package into system python, includes entry point script
RUN uv pip install --system .
Expand Down
Loading
Loading