Skip to content

Commit

Permalink
fix(Dockerfile): update MCP configuration copy command
Browse files Browse the repository at this point in the history
Replaced the specific copy command for mcp_config.json with a more general copy command to include all files from the MCP directory. This change ensures that all necessary configuration files are included in the Docker image for the MCP client functionality.
  • Loading branch information
kiritoko1029 committed Jan 20, 2025
1 parent d8ae069 commit b6280a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ COPY --from=builder /app/.next/static ./.next/static
COPY --from=builder /app/.next/server ./.next/server

RUN mkdir -p /app/app/mcp && chmod 777 /app/app/mcp
COPY --from=builder /app/app/mcp/mcp_config.json /app/app/mcp/
COPY --from=builder /app/app/mcp/ /app/app/mcp/

EXPOSE 3000

Expand Down

0 comments on commit b6280a9

Please sign in to comment.