Skip to content
Closed
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
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ COPY package.json ./
# Copy all package.json files from the monorepo
# This ensures all workspace packages are correctly identified
COPY apps/dbagent/package.json ./apps/dbagent/
COPY packages/components/package.json ./packages/components/
COPY packages/theme/package.json ./packages/theme/
COPY configs/eslint-config/package.json ./configs/eslint-config/
COPY configs/tsconfig/package.json ./configs/tsconfig/
#COPY packages/components/package.json ./packages/components/
#COPY packages/theme/package.json ./packages/theme/
#COPY configs/eslint-config/package.json ./configs/eslint-config/
#COPY configs/tsconfig/package.json ./configs/tsconfig/

# Now copy the source code of all workspace packages
COPY packages/ ./packages/
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ services:
- db_network

xata-agent:
image: xataio/agent:0.2.2
image: xataio/agent:0.3.1
environment:
DATABASE_URL: postgresql://${POSTGRES_USER:-dbagent}:${POSTGRES_PASSWORD:-changeme}@postgres:5432/${POSTGRES_DB:-dbagent}
NODE_ENV: production
Expand Down
Loading