aboutsummaryrefslogtreecommitdiffstats
path: root/.dockerignore
blob: f76f0a037cae6530777f6137ba9e51d898a2235d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
.DS_Store

# ignore .git and .cache folders
.git*
.cache

# ignore all markdown files
*.md

# Ignore database files
*.sqlite

# ignore other directories
docker
!docker/entrypoint.sh
!docker/.env
node_modules
.husky

# Ignore data folder
data
tmp

# Ignore recipes folder (it is pulled in the image by git)
recipes

# Ignore build folder
build