Skip to content
Closed
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
Loading