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
6 changes: 3 additions & 3 deletions auth-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Development stage
FROM node:22-alpine AS development
FROM node:24-alpine AS development

WORKDIR /app

Expand All @@ -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

Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion auth-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Development stage
FROM python:3.12-slim AS development
FROM python:3.13-slim AS development

WORKDIR /app

Expand All @@ -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

Expand Down
8 changes: 4 additions & 4 deletions backend/requirements.txt
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Development stage
FROM node:22-alpine AS development
FROM node:24-alpine AS development

WORKDIR /app

Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading