feat(frontend): migrate frontend service to Next.js

This commit is contained in:
2026-05-20 10:10:11 +03:30
parent b4c6b3c012
commit 5511ed5d91
6 changed files with 29 additions and 132 deletions

View File

@@ -1,30 +1,36 @@
FROM node:20-alpine AS builder
FROM node:20-alpine AS deps
WORKDIR /app
RUN npm config set registry https://package-mirror.liara.ir/repository/npm/ --global
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm install
RUN npm ci
# Copy source code
FROM node:20-alpine AS builder
WORKDIR /app
ENV NODE_ENV=production
COPY --from=deps /app/node_modules ./node_modules
COPY . .
# Build the application
RUN npm run build
# Production image
FROM nginx:alpine
FROM node:20-alpine AS runner
# Copy built files to nginx
COPY --from=builder /app/dist /usr/share/nginx/html
WORKDIR /app
# Copy nginx configuration
COPY nginx.conf /etc/nginx/conf.d/default.conf
ENV NODE_ENV=production
ENV PORT=3000
ENV HOSTNAME=0.0.0.0
EXPOSE 80
COPY --from=builder /app/public ./public
COPY --from=builder /app/.next/standalone ./
COPY --from=builder /app/.next/static ./.next/static
CMD ["nginx", "-g", "daemon off;"]
EXPOSE 3000
CMD ["node", "server.js"]