Skip to content

Commit 3013600

Browse files
authored
Merge pull request #7 from dsubject/adding_docker
addign docker
2 parents 4a2a1ee + d2963ee commit 3013600

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

.dockerignore

+25
Original file line numberDiff line numberDiff line change
@@ -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

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Base image: Use NGINX to serve static files
2+
FROM nginx:alpine
3+
4+
# Copy Astro's static output to NGINX's HTML directory
5+
COPY dist/ /usr/share/nginx/html
6+
7+
# Expose the default HTTP port
8+
EXPOSE 80
9+
10+
CMD ["nginx", "-g", "daemon off;"]

0 commit comments

Comments
 (0)