File tree 1 file changed +20
-5
lines changed
1 file changed +20
-5
lines changed Original file line number Diff line number Diff line change 1
- # Base image: Use NGINX to serve static files
1
+ # Stage 1: Build the Astro static site
2
+ FROM node:18-alpine AS builder
3
+
4
+ # Set working directory
5
+ WORKDIR /app
6
+
7
+ # Install dependencies
8
+ COPY package.json package-lock.json ./
9
+ RUN npm install --production
10
+
11
+ # Copy source files and build Astro
12
+ COPY . .
13
+ RUN npm run build
14
+
15
+ # Stage 2: Serve the static files with NGINX
2
16
FROM nginx:alpine
3
17
4
- # Copy Astro's static output to NGINX's HTML directory
5
- COPY dist/ /usr/share/nginx/html
18
+ # Copy the Astro build output to NGINX's HTML directory
19
+ COPY --from=builder /app/dist /usr/share/nginx/html
6
20
7
- # Expose the default HTTP port
21
+ # Expose the HTTP port
8
22
EXPOSE 80
9
23
10
- CMD ["nginx" , "-g" , "daemon off;" ]
24
+ # Start NGINX
25
+ CMD ["nginx" , "-g" , "daemon off;" ]
You can’t perform that action at this time.
0 commit comments