blob: 28f71fd72433e9c256f68dd990a24a630ddb623f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# --------------------
# Build stage
# --------------------
FROM node:20-alpine AS build
# Set working directory
WORKDIR /app
# Copy dependency files first (better caching)
COPY package.json package-lock.json ./
# Install dependencies
RUN npm ci
# Copy the rest of the source code
COPY . .
# Build the app
RUN npm run build
# --------------------
# Production stage
# --------------------
FROM nginx:alpine
# Copy built files from build stage
COPY --from=build /app/dist /usr/share/nginx/html
# Expose port 80
EXPOSE 80
# Start nginx
CMD ["nginx", "-g", "daemon off;"]
|