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

WORKDIR /app

# Copy everything
COPY . .

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

# Build the app
RUN npm run build

# Expose port
EXPOSE 3000

# Start with npm start
CMD ["npm", "start"]