We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4a2a1ee + d2963ee commit 3013600Copy full SHA for 3013600
.dockerignore
@@ -0,0 +1,25 @@
1
+# Ignore node_modules
2
+node_modules
3
+
4
+# Ignore logs and temp files
5
+npm-debug.log
6
+yarn-debug.log
7
+yarn-error.log
8
+pnpm-debug.log
9
+.DS_Store
10
11
+# Ignore build artifacts except 'dist/'
12
+build/
13
+output/
14
+public/
15
+.tmp
16
17
+# Ignore environment variables and sensitive data
18
+.env
19
+.env.local
20
+.env.*.local
21
+fly.toml
22
23
+# Ignore git files
24
+.git
25
+.gitignore
Dockerfile
@@ -0,0 +1,10 @@
+# Base image: Use NGINX to serve static files
+FROM nginx:alpine
+# Copy Astro's static output to NGINX's HTML directory
+COPY dist/ /usr/share/nginx/html
+# Expose the default HTTP port
+EXPOSE 80
+CMD ["nginx", "-g", "daemon off;"]
0 commit comments