Skip to content

Commit f8df448

Browse files
committed
fix: add .dockerignore to exclude mobile apps from the Docker build
1 parent edd4845 commit f8df448

File tree

2 files changed

+60
-1
lines changed

2 files changed

+60
-1
lines changed

.dockerignore

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# Dependencies
2+
node_modules
3+
**/node_modules
4+
.pnpm-store
5+
6+
# Mobile apps (not needed for web build)
7+
apps/mobile/
8+
9+
# Build outputs
10+
dist
11+
build
12+
*.log
13+
14+
# Git
15+
.git
16+
.gitignore
17+
.github
18+
19+
# Environment files
20+
myKEYs.OLD
21+
.env.local
22+
.env.*.local
23+
24+
# IDE
25+
.vscode
26+
.idea
27+
*.swp
28+
*.swo
29+
*~
30+
.DS_Store
31+
32+
# Testing
33+
coverage
34+
.nyc_output
35+
36+
# Documentation
37+
*.md
38+
docs
39+
LICENSE
40+
41+
# Docker
42+
Dockerfile
43+
docker-compose*.yml
44+
.dockerignore
45+
46+
# CI/CD
47+
.gitlab-ci.yml
48+
.travis.yml
49+
.circleci
50+
azure-pipelines.yml
51+
52+
# Development
53+
.husky
54+
.editorconfig
55+
.eslintcache
56+
.prettierignore
57+
58+
# OS Files
59+
Thumbs.db
60+
Desktop.ini

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,6 @@ $RECYCLE.BIN/
198198
*.sqlite3
199199

200200
# Docker
201-
.dockerignore
202201
Dockerfile.dev
203202
docker-compose.override.yml
204203

0 commit comments

Comments
 (0)