File size: 387 Bytes
e2db416
 
 
 
d8886c0
e2db416
 
d8886c0
 
e2db416
d8886c0
e2db416
 
d8886c0
e2db416
 
d8886c0
e2db416
 
d8886c0
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
FROM node:20-slim

WORKDIR /app

# Copy only package files first for better caching
COPY package*.json ./

# Install dependencies with legacy peer deps
RUN npm ci --legacy-peer-deps

# Copy the rest of the application
COPY . .

# Build the Next.js app
RUN npm run build

# Expose the port
EXPOSE 3000

# Use Node directly to avoid npm overhead
CMD ["node", ".next/standalone/server.js"]