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
2 changes: 2 additions & 0 deletions app/server/docker/dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ COPY package*.json ./
RUN npm i --omit=dev

COPY --from=builder /app/dist ./dist
COPY --from=builder /app/drizzle.config.ts ./drizzle.config.ts
COPY --from=builder /app/migrations ./migrations

USER node

Expand Down
2 changes: 1 addition & 1 deletion app/server/migrations/meta/0000_snapshot.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"id": "2085f98e-e33f-4cf6-a004-ab83e2eae507",
"id": "8c008a9e-ace6-4d3e-9cdd-49cd02e2d00b",
"prevId": "00000000-0000-0000-0000-000000000000",
"version": "7",
"dialect": "postgresql",
Expand Down
4 changes: 2 additions & 2 deletions app/server/migrations/meta/_journal.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
{
"idx": 0,
"version": "7",
"when": 1784814591157,
"tag": "0000_busy_venom",
"when": 1784823827001,
"tag": "0000_red_vermin",
"breakpoints": true
}
]
Expand Down
2 changes: 1 addition & 1 deletion app/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
"typescript": "^6.0.3",
"winston": "^3.19.0",
"ws": "^8.21.0",
"drizzle-kit": "^0.31.10",
"zod": "^4.4.3"
},
"devDependencies": {
Expand All @@ -66,7 +67,6 @@
"@types/swagger-ui-express": "^4.1.8",
"@types/winston": "^2.4.4",
"@types/ws": "^8.18.1",
"drizzle-kit": "^0.31.10",
"jest": "^30.4.2",
"supertest": "^7.2.2",
"ts-jest": "^29.4.11"
Expand Down
2 changes: 0 additions & 2 deletions docker/docker-compose.prod.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: "3.9"

services:
nginx:
image: nginx:latest
Expand Down
Loading