We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c88c3f5 commit 979405dCopy full SHA for 979405d
Dockerfile
@@ -1,22 +1,8 @@
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
+# Use NGINX to serve static files
16
FROM nginx:alpine
17
18
-# Copy the Astro build output to NGINX's HTML directory
19
-COPY --from=builder /app/dist /usr/share/nginx/html
+# Copy pre-built static files from the GitHub Actions build step
+COPY dist/ /usr/share/nginx/html
20
21
# Expose the HTTP port
22
EXPOSE 80
0 commit comments