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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM node:18-alpine

WORKDIR /app

RUN apk add --no-cache libc6-compat
RUN apk add --no-cache libc6-compat openssl
RUN apk update

# Install pnpm
Expand All @@ -27,4 +27,4 @@ RUN pnpm run build
EXPOSE 3000

# Start the application
CMD ["sh", "./start.sh"]
CMD ["sh", "./start.sh"]
9 changes: 9 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"pnpm": {
"onlyBuiltDependencies": [
"@prisma/client",
"@prisma/engines",
"esbuild",
"prisma",
"sqlite3"
]
},
"dependencies": {
"@ai-sdk/amazon-bedrock": "^0.0.17",
"@ai-sdk/anthropic": "^0.0.46",
Expand Down
Loading