Compare commits

...

5 Commits

Author SHA1 Message Date
307909e2e7 chore(deps): update node.js to v24 2025-12-30 08:29:28 +00:00
64267eb15d Merge pull request 'chore(deps): update actions/checkout action to v6' (#21) from renovate/actions-checkout-6.x into main
Some checks failed
Docker Build and Push / build-and-push (push) Has been cancelled
Reviewed-on: bagas/tunnl_please_frontend#21
2025-12-30 08:26:57 +00:00
17a1598afa Merge pull request 'fix(deps): update dependency next to v16' (#23) from renovate/major-nextjs-monorepo into main
Some checks failed
Docker Build and Push / build-and-push (push) Has been cancelled
Reviewed-on: bagas/tunnl_please_frontend#23
2025-12-30 08:26:44 +00:00
a6284f1927 fix(deps): update dependency next to v16 2025-12-30 08:25:57 +00:00
55a9835845 chore(deps): update actions/checkout action to v6 2025-12-30 08:25:18 +00:00
4 changed files with 1062 additions and 54 deletions

View File

@@ -34,7 +34,7 @@ jobs:
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v6
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3 uses: docker/setup-buildx-action@v3

View File

@@ -1,4 +1,4 @@
FROM node:22-alpine AS builder FROM node:24-alpine AS builder
WORKDIR /app WORKDIR /app
@@ -9,7 +9,7 @@ COPY . .
RUN npm run build RUN npm run build
FROM node:22-alpine AS runner FROM node:24-alpine AS runner
WORKDIR /app WORKDIR /app

1106
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -29,7 +29,7 @@
"dotenv": "^17.2.2", "dotenv": "^17.2.2",
"drizzle-orm": "^0.44.5", "drizzle-orm": "^0.44.5",
"net": "^1.0.2", "net": "^1.0.2",
"next": "^15.5.2", "next": "^16.0.0",
"pg": "^8.16.3", "pg": "^8.16.3",
"react": "^19.0.0", "react": "^19.0.0",
"react-dom": "^19.0.0", "react-dom": "^19.0.0",
@@ -38,7 +38,7 @@
}, },
"devDependencies": { "devDependencies": {
"@tailwindcss/postcss": "^4", "@tailwindcss/postcss": "^4",
"@types/node": "^20", "@types/node": "^24.0.0",
"@types/pg": "^8.15.5", "@types/pg": "^8.15.5",
"@types/react": "^19", "@types/react": "^19",
"@types/react-dom": "^19", "@types/react-dom": "^19",