-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.dockerignore
55 lines (48 loc) · 1.14 KB
/
.dockerignore
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# we try to aoid adding files to the docker images that change often
# or that are not needed for running the docker image
# tis greatly reduces the amount of times we need to rerun `npm install` when building image locally
# https://codefresh.io/blog/not-ignore-dockerignore/
# https://docs.docker.com/engine/reference/builder/#dockerignore-file
*.git
ant.design/code/.git
cn.vuejs.org/code/.git
deno-manual-cn/code/.git
element.eleme.io/code/.git
element.react/code/.git
expressjs.com/code/.git
jestjs.io/code/.git
koajs.com/code/.git
react-native/code/.git
sequelize.org/code/.git
typeorm.github.io/code/.git
webpack.js.org/code/.git
zh-hans.reactjs.org/code/.git
# consider them hidden
.*
# you can add exceptions like in .gitignore to maintain a whitelist:
# e.g.
!.babelrc
!.eslintrc
!.eslintignore
!.stylelintrc
!.flowconfig
!.jest.config.js
!.jestEnvironment.js
# do not copy over node_modules we will run `npm install` anyway
node_modules
# output from test runs and similar things
*.log
*.pid
log
coverage/
*.rdb
.vscode/
.git
*.log
# IDE config files
jsconfig.json
*.iml
# let's not get to recursive ;)
Dockerfile*
docker-compose*.yaml
README.md