diff --git a/auth-service/Dockerfile b/auth-service/Dockerfile index 6761cdfe..9a83bd45 100644 --- a/auth-service/Dockerfile +++ b/auth-service/Dockerfile @@ -1,5 +1,5 @@ # Development stage -FROM node:22-alpine AS development +FROM node:24-alpine AS development WORKDIR /app @@ -19,7 +19,7 @@ EXPOSE 3001 CMD ["npm", "run", "dev"] # Builder stage -FROM node:22-alpine AS builder +FROM node:24-alpine AS builder WORKDIR /app @@ -36,7 +36,7 @@ COPY . . RUN npm run build # Production stage -FROM node:22-alpine AS production +FROM node:24-alpine AS production WORKDIR /app diff --git a/auth-service/package.json b/auth-service/package.json index 1476a564..dd74e9c7 100644 --- a/auth-service/package.json +++ b/auth-service/package.json @@ -19,7 +19,7 @@ "better-auth": "^1.2.8", "cors": "^2.8.5", "dotenv": "^16.5.0", - "express": "^4.21.2", + "express": "^5.1.0", "nodemon": "^3.1.10", "pg": "^8.16.0", "tsx": "^4.19.4", diff --git a/backend/Dockerfile b/backend/Dockerfile index a4074100..31c53ecb 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -1,5 +1,5 @@ # Development stage -FROM python:3.12-slim AS development +FROM python:3.13-slim AS development WORKDIR /app @@ -24,7 +24,7 @@ EXPOSE 8000 CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000", "--reload"] # Production stage -FROM python:3.12-slim AS production +FROM python:3.13-slim AS production WORKDIR /app diff --git a/backend/requirements.txt b/backend/requirements.txt index 8a678e4c..d829a0f0 100644 --- a/backend/requirements.txt +++ b/backend/requirements.txt @@ -1,12 +1,12 @@ fastapi==0.115.12 uvicorn[standard]==0.34.2 -python-dotenv==1.0.1 +python-dotenv==1.1.0 sqlalchemy==2.0.41 asyncpg==0.30.0 psycopg2-binary==2.9.10 httpx==0.28.1 -redis==5.2.1 +redis==6.1.0 pydantic==2.11.5 -pydantic-settings==2.7.1 -python-jose[cryptography]==3.3.0 +pydantic-settings==2.9.1 +python-jose[cryptography]==3.4.0 alembic==1.16.1 \ No newline at end of file diff --git a/frontend/Dockerfile b/frontend/Dockerfile index dac023dd..8e204722 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -1,5 +1,5 @@ # Development stage -FROM node:22-alpine AS development +FROM node:24-alpine AS development WORKDIR /app @@ -19,7 +19,7 @@ EXPOSE 5173 CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0"] # Production build stage -FROM node:22-alpine AS builder +FROM node:24-alpine AS builder WORKDIR /app diff --git a/frontend/package.json b/frontend/package.json index a169648a..1d91c55a 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -38,7 +38,7 @@ "eslint-plugin-react-refresh": "^0.4.19", "globals": "^16.0.0", "postcss": "^8.5.3", - "tailwindcss": "^3.4.17", + "tailwindcss": "^4.1.7", "typescript": "~5.8.3", "typescript-eslint": "^8.30.1", "vite": "^6.3.5"