-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.dockerignore
86 lines (69 loc) · 1.33 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
80
81
82
83
84
85
86
# See https://docs.docker.com/engine/reference/builder/#dockerignore-file for
# more about ignoring files.
# Ignore bundler configuration.
/.bundle/
# Ignore Docker-related files.
/.dockerignore
/Dockerfile*
# Ignore all environment files.
/.env*
# Ignore git directory and files.
/.git/
/.gitattributes
/.gitignore
# Ignore GitHub files.
/.github/
# Ignore Ruby-related files.
/.rubocop.yml
/.ruby-lsp/
# Ignore any asset builds.
/app/assets/builds/*
!/app/assets/builds/.keep
# Ignore binary files.
bin/brakeman
bin/dev
bin/mocha
bin/rubocop
bin/setup
# Ignore all default key files.
/config/master.key
/config/credentials/*.key
# Ignore Kamal related files.
/.kamal/
# Ignore development Rake tasks.
lib/tasks/check.rake
lib/tasks/css.rake
lib/tasks/javascript.rake
lib/tasks/ruby.rake
# Ignore all logs and temporary files.
/log/*
/tmp/*
!/log/.keep
!/tmp/.keep
# Ignore any development and test files.
/node_modules/
/spec/
/.yarn/
.erb_lint.yml
.stylelintignore
.stylelintrc.json
.tool-versions
.yarnrc.yml
Procfile.dev
README.md
eslint.config.cjs
package.json
yarn.lock
# Ignore any pre-compiled assets.
/public/assets/
# Ignore any SQLite databases.
/storage/*
!/storage/.keep
# Ignore PID files.
/tmp/pids/*
!/tmp/pids/
!/tmp/pids/.keep
# Ignore storage for uploaded files in development.
/tmp/storage/*
!/tmp/storage/
!/tmp/storage/.keep