-
Notifications
You must be signed in to change notification settings - Fork 0
/
.dockerignore
79 lines (61 loc) · 1.35 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
68
69
70
71
72
73
74
75
76
77
78
79
# Files ignored on the Docker build context.
# Part 1: Include the Git ignore rules: ========================================
# Ignore bundler config.
/.bundle
# Ignore all logfiles and tempfiles.
/log/*
/tmp/*
!/log/.keep
!/tmp/.keep
# Ignore uploaded files in development
/storage/*
!/storage/.keep
/node_modules
/yarn-error.log
/public/assets
**/.*_hist*
**/pry_history
# Ignore master key for decrypting credentials and more.
/config/master.key
/public/assets
/public/packs
/public/packs-test
/node_modules
yarn-debug.log*
.yarn-integrity
# Ignore dotenv files:
**/*.env
/.local
# Ignore codeclimate engine configuration files, which are downloadable from
# icalia guides repo with the `codeclimate prepare` command:
/.reek.yml
/.rubocop.yml
/.rubocop-rails.yml
/.scss-lint.yml
# Ignore database dumps:
/db/dumps/*
# Ignore rspec saved state:
/spec/examples.txt
# Ignore OS artifacts:
**/.DS_Store
# Part 2: Ignore unnecesary version-controlled files:
# Ignore the local Git files:
/.git
/.gitignore
/.gitattributes
# Ignore github templates:
/.github/
# Ignore the docker files - changes in these shouldn't affect the built layers:
Dockerfile
docker-compose.yml
common-services.yml
staging-compose.yml
# Ignore the CI/CD configuration files:
/.semaphore
/.drone.yml
/heroku.yml
/jarvis.lock
/jarvis.yml
/.codeclimate.yml
# Ignore test coverage reports:
coverage/*