forked from gardener/dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.dockerignore
67 lines (57 loc) · 1.28 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
56
57
58
59
60
61
62
63
64
65
66
67
# Ignore everything
**
# include Yarn 2 configuration, cache, releases and plugins
!.yarn/cache
!.yarn/releases
!.yarn/plugins
!.yarn/versions
!.yarnrc.yml
!.pnp.js
# include root workspace
!package.json
!yarn.lock
# include workspace packages/logger
!packages/logger/package.json
!packages/logger/lib
!packages/logger/__tests__
# include workspace packages/request
!packages/request/package.json
!packages/request/lib
!packages/request/__tests__
# include workspace packages/kube-config
!packages/kube-config/package.json
!packages/kube-config/lib
!packages/kube-config/__tests__
# include workspace packages/kube-client
!packages/kube-client/package.json
!packages/kube-client/lib
!packages/kube-client/__tests__
# include workspace backend
!backend/package.json
!backend/jest.setup.js
!backend/server.js
!backend/lib
!backend/test
!backend/__tests__
!backend/__fixtures__
!backend/__mocks__
# include workspace frontend
!frontend/package.json
!frontend/.browserslistrc
!frontend/.editorconfig
!frontend/.env*
!frontend/.eslint*
!frontend/*.config.js
!frontend/public
!frontend/src
!frontend/tests
# include workspace charts
!charts/package.json
!charts/jest.setup.js
!charts/_versions.tpl
!charts/gardener-dashboard
!charts/identity
!charts/__tests__
# include metadata files
!VERSION
!Dockerfile