Skip to content

Commit 393173e

Browse files
committed
Fix the path in dockerfile and also smithery
1 parent febf0e6 commit 393173e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ COPY --from=builder /app/package.json /app/package.json
2929
COPY --from=builder /app/package-lock.json /app/package-lock.json
3030

3131
# Install only production dependencies
32-
RUN npm ci --omit=dev
32+
RUN npm ci --omit=dev --ignore-scripts
3333

3434
# Set environment variables for API key and custom API URL if needed
3535
ENV FIRECRAWL_API_KEY=your-api-key
3636
ENV FIRECRAWL_API_URL=https://firecrawl.your-domain.com
3737

3838
# Specify the command to run the application
39-
ENTRYPOINT ["node", "dist/src/index.js"]
39+
ENTRYPOINT ["node", "dist/index.js"]

smithery.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ startCommand:
1818
commandFunction:
1919
# A function that produces the CLI command to start the MCP on stdio.
2020
|-
21-
(config) => ({ command: 'node', args: ['dist/src/index.js'], env: { FIRECRAWL_API_KEY: config.fireCrawlApiKey, FIRECRAWL_API_URL: config.fireCrawlApiUrl || '' } })
21+
(config) => ({ command: 'node', args: ['dist/index.js'], env: { FIRECRAWL_API_KEY: config.fireCrawlApiKey, FIRECRAWL_API_URL: config.fireCrawlApiUrl || '' } })

0 commit comments

Comments
 (0)