Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ WORKDIR /app
COPY package.json package-lock.json ./
RUN npm install

npm install typescript -g
RUN npm install typescript -g

COPY . .
RUN npm run build
Expand All @@ -22,4 +22,4 @@ COPY --from=builder /app/dist ./dist

EXPOSE 8000

CMD ["node", "dist/index.js"]
CMD ["node", "dist/index.js"]
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@
"aws ecr get-login-password --region us-east-1 | \\\n",
" docker login --username AWS --password-stdin [account-id].dkr.ecr.us-east-1.amazonaws.com\n",
"\n",
"docker buildx --platform linux/arm64 \\\n",
"docker buildx build --platform linux/arm64 \\\n",
" -t [account-id].dkr.ecr.us-east-1.amazonaws.com/mcp-server:latest --push .\n",
"```\n",
"\n",
Expand Down