-
Notifications
You must be signed in to change notification settings - Fork 31
/
.dockerignore
79 lines (66 loc) · 1.48 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
.git
.dockerignore
### Ruby ###
*.gem
*.rbc
/.config
/coverage/
/pkg/
/tmp/
# Used by dotenv library to load environment variables.
# .env
# Ignore files that may need to be redacted:
/config/database.yml
/config/initializers/secret_token.rb
# Database files
/db/*.sqlite3
/db/*.sqlite3-journal
## Documentation cache and generated files:
/.yardoc/
/_yardoc/
/.yardopts/
/doc/
/rdoc/
## Environment normalization:
/.bundle/
/vendor/bundle
/lib/bundler/man/
# Editor workspace files
#
# Only ignore user-centric settings and not broad project settings. The .vscode
# directory, for instance, only contains broad project settings; likewise, the
# .sublime-project file defines a project but .sublime-workspace contains user-
# specific temp settings (like which files were last open)--checkin the former
# but ignore the latter.
#
.sublime-workspace
.atom/packages/
.atom/storage/
# macOS cruft
.DS_Store
.DS_Store?
# Ignore files that could cause trouble when deploying gems
Gemfile.lock
.ruby-version
.ruby-gemset
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
.rvmrc
# RSpec temporary files
.rspec_status
/spec/reports/
/spec/examples.txt
/spec/rails-app*/Gemfile.lock
/spec/rails-app*/log/*.log
/spec/rails-app*/bin/
/spec/rails-app*/tmp/
# NOTE: Commit test.sqlite3 file for automated testing. Ignore all others.
/spec/rails-app*/db/*.sqlite3
!/spec/rails-app*/db/test.sqlite3
# Ignore other unneeded files
*.swp
*~
.project
.DS_Store
.DS_Store?
.byebug_history
/node_modules/