Skip to content

Commit

Permalink
Create .dockerignore
Browse files Browse the repository at this point in the history
  • Loading branch information
1ilit committed May 22, 2024
1 parent f353b09 commit 09fe552
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Ignore node_modules
node_modules

# Ignore logs
*.log
logs
*.log.*

# Ignore environment variables
.env

# Ignore build directories and files
dist
build

# Ignore temporary files and directories
tmp
temp
*.tmp
*.swp
*.swo
*.bak

# Ignore Docker-related files
Dockerfile*
docker-compose.yml

# Ignore IDE/editor specific files
.vscode
.idea
*.iml
*.sublime-project
*.sublime-workspace

# Ignore OS-specific files
.DS_Store

0 comments on commit 09fe552

Please sign in to comment.