Skip to content

Commit 90af3b6

Browse files
authored
Update Dockerfile
1 parent 130954f commit 90af3b6

File tree

1 file changed

+20
-5
lines changed

1 file changed

+20
-5
lines changed

Dockerfile

+20-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,25 @@
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
216
FROM nginx:alpine
317

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
620

7-
# Expose the default HTTP port
21+
# Expose the HTTP port
822
EXPOSE 80
923

10-
CMD ["nginx", "-g", "daemon off;"]
24+
# Start NGINX
25+
CMD ["nginx", "-g", "daemon off;"]

0 commit comments

Comments
 (0)