diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 4e788dc..1df1437 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -1,5 +1,5 @@ # Multi-stage build for Next.js frontend -FROM node:20-alpine AS builder +FROM docker.io/node:20-alpine AS builder # Set working directory WORKDIR /app @@ -17,7 +17,7 @@ COPY . . RUN npm run build # Production stage -FROM node:20-alpine AS runner +FROM docker.io/node:20-alpine AS runner # Create non-root user RUN addgroup --system --gid 1001 nodejs