Skip to content

Commit f9b50a6

Browse files
committed
fix(sentry): Add sentry-sdk to Dockerfile
Issue: #
1 parent 724c9a9 commit f9b50a6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ COPY --chown=65532:65532 src ./src
5252

5353
# Install all packages from wheels
5454
# Using --system to install globally (not in a venv) since this is a container
55-
RUN uv pip install --system /tmp/wheels/*.whl && \
55+
# Also install sentry-sdk for error monitoring in production
56+
RUN uv pip install --system /tmp/wheels/*.whl sentry-sdk && \
5657
rm -rf /tmp/wheels
5758

5859
# Install root package to get entry points (http-mcp-server, etc.)

0 commit comments

Comments
 (0)