Skip to content
Merged
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
14 changes: 10 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,20 @@
FROM node:24.13.0-alpine

RUN apk add --no-cache bash git
RUN apk update

WORKDIR /app

# Use the exact pnpm version pinned in package.json "packageManager"
RUN corepack enable

# Copy lockfile + manifest first for layer caching
COPY package.json pnpm-lock.yaml ./
RUN pnpm install --frozen-lockfile

# Now copy the rest of the source
COPY . .
RUN npm install pnpm -g
RUN pnpm install
RUN pnpm run lint
RUN pnpm test
RUN pnpm run build
RUN chmod +x appStartUp.sh
CMD ./appStartUp.sh
CMD ["./appStartUp.sh"]
16 changes: 9 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,15 @@
"@ai-sdk/openai": "^3.0.74",
"@aws-sdk/credential-providers": "^3.1075.0",
"@mastra/auth-auth0": "^1.2.1",
"@mastra/core": "^1.50.1",
"@mastra/evals": "^1.5.1",
"@mastra/libsql": "^1.15.1",
"@mastra/core": "^1.57.0",
"@mastra/evals": "^1.7.0",
"@mastra/libsql": "^1.19.0",
"@mastra/loggers": "^1.2.0",
"@mastra/memory": "^1.22.2",
"@mastra/observability": "^1.16.0",
"@mastra/pg": "^1.15.1",
"@mastra/memory": "^1.26.0",
"@mastra/observability": "^1.16.5",
"@mastra/pg": "^1.19.0",
"@opentelemetry/exporter-logs-otlp-proto": "^0.221.0",
"@opentelemetry/exporter-trace-otlp-proto": "^0.221.0",
"@topcoder/wipro-ai-sdk-provider": "git+https://git.topcoder.com/Topcoder-Platform/Wipro-Provider-AI-SDK.git",
"ai": "^6.0.209",
"ai-sdk-ollama": "^3.8.8",
Expand All @@ -46,7 +48,7 @@
"@eslint/js": "^10.0.1",
"@types/node": "^26.0.1",
"eslint": "^10.5.0",
"mastra": "^1.18.2",
"mastra": "^1.23.0",
"prettier": "^3.8.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.0",
Expand Down
Loading