We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3a1660 commit 0e94440Copy full SHA for 0e94440
mcp_servers/fetch_toolathlon/Dockerfile
@@ -5,13 +5,13 @@ FROM node:22-alpine AS builder
5
WORKDIR /app
6
7
# Copy package.json and package-lock.json to install dependencies
8
-COPY mcp_servers/fetch_url/package.json mcp_servers/fetch_url/package-lock.json ./
+COPY mcp_servers/fetch_toolathlon/package.json mcp_servers/fetch_toolathlon/package-lock.json ./
9
10
# Install dependencies (ignoring scripts to prevent running the prepare script)
11
RUN npm install --ignore-scripts
12
13
# Copy the rest of the application source code
14
-COPY mcp_servers/fetch_url .
+COPY mcp_servers/fetch_toolathlon .
15
16
# Build the application using TypeScript
17
RUN npm run build
0 commit comments