Skip to content

Commit ad4b0ce

Browse files
committed
fix(Dockerfile): set entrypoint and default --no-setup flag
1 parent 7076bde commit ad4b0ce

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,6 @@ RUN --mount=type=cache,target=/root/.cache/uv \
2424
RUN adduser -D -u 1000 mcpuser && chown -R mcpuser:mcpuser /app
2525
USER mcpuser
2626

27-
# Default command
28-
CMD ["uv", "run", "python", "main.py", "--no-setup"]
27+
# Set entrypoint and default arguments
28+
ENTRYPOINT ["uv", "run", "python", "main.py", "--no-setup"]
29+
CMD []

0 commit comments

Comments
 (0)