Skip to content

Commit f796b07

Browse files
Merge pull request #45 from weekenthralling/di
chore: improve dockerignore
2 parents fa2911a + 9706884 commit f796b07

File tree

1 file changed

+167
-1
lines changed

1 file changed

+167
-1
lines changed

.dockerignore

Lines changed: 167 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,169 @@
1-
# More info: https://docs.docker.com/engine/reference/builder/#dockerignore-file
1+
##
2+
# MacOS
3+
# <https://github.com/github/gitignore/blob/main/Global/macOS.gitignore>
4+
##
5+
6+
# General
7+
.DS_Store
8+
.AppleDouble
9+
.LSOverride
10+
11+
# Icon must end with two \r
12+
Icon
13+
14+
15+
# Thumbnails
16+
._*
17+
18+
# Files that might appear in the root of a volume
19+
.DocumentRevisions-V100
20+
.fseventsd
21+
.Spotlight-V100
22+
.TemporaryItems
23+
.Trashes
24+
.VolumeIcon.icns
25+
.com.apple.timemachine.donotpresent
26+
27+
# Directories potentially created on remote AFP share
28+
.AppleDB
29+
.AppleDesktop
30+
Network Trash Folder
31+
Temporary Items
32+
.apdisk
33+
34+
##
35+
# Windows
36+
# <https://github.com/github/gitignore/blob/main/Global/Windows.gitignore>
37+
##
38+
39+
# Windows thumbnail cache files
40+
Thumbs.db
41+
Thumbs.db:encryptable
42+
ehthumbs.db
43+
ehthumbs_vista.db
44+
45+
# Dump file
46+
*.stackdump
47+
48+
# Folder config file
49+
[Dd]esktop.ini
50+
51+
# Recycle Bin used on file shares
52+
$RECYCLE.BIN/
53+
54+
# Windows Installer files
55+
*.cab
56+
*.msi
57+
*.msix
58+
*.msm
59+
*.msp
60+
61+
# Windows shortcuts
62+
*.lnk
63+
64+
##
65+
# Linux
66+
# <https://github.com/github/gitignore/blob/main/Global/Linux.gitignore>
67+
##
68+
69+
*~
70+
71+
# temporary files which can be created if a process still has a handle open of a deleted file
72+
.fuse_hidden*
73+
74+
# KDE directory preferences
75+
.directory
76+
77+
# Linux trash folder which might appear on any partition or disk
78+
.Trash-*
79+
80+
# .nfs files are created when an open file is removed but is still being accessed
81+
.nfs*
82+
83+
##
84+
# JetBrans
85+
# <https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore>
86+
##
87+
88+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
89+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
90+
91+
# User-specific stuff
92+
.idea/**/workspace.xml
93+
.idea/**/tasks.xml
94+
.idea/**/usage.statistics.xml
95+
.idea/**/dictionaries
96+
.idea/**/shelf
97+
98+
# AWS User-specific
99+
.idea/**/aws.xml
100+
101+
# Generated files
102+
.idea/**/contentModel.xml
103+
104+
# Sensitive or high-churn files
105+
.idea/**/dataSources/
106+
.idea/**/dataSources.ids
107+
.idea/**/dataSources.local.xml
108+
.idea/**/sqlDataSources.xml
109+
.idea/**/dynamic.xml
110+
.idea/**/uiDesigner.xml
111+
.idea/**/dbnavigator.xml
112+
113+
# Gradle
114+
.idea/**/gradle.xml
115+
.idea/**/libraries
116+
117+
# Gradle and Maven with auto-import
118+
# When using Gradle or Maven with auto-import, you should exclude module files,
119+
# since they will be recreated, and may cause churn. Uncomment if using
120+
# auto-import.
121+
# .idea/artifacts
122+
# .idea/compiler.xml
123+
# .idea/jarRepositories.xml
124+
# .idea/modules.xml
125+
# .idea/*.iml
126+
# .idea/modules
127+
# *.iml
128+
# *.ipr
129+
130+
# CMake
131+
cmake-build-*/
132+
133+
# Mongo Explorer plugin
134+
.idea/**/mongoSettings.xml
135+
136+
# File-based project format
137+
*.iws
138+
139+
# IntelliJ
140+
out/
141+
142+
# mpeltonen/sbt-idea plugin
143+
.idea_modules/
144+
145+
# JIRA plugin
146+
atlassian-ide-plugin.xml
147+
148+
# Cursive Clojure plugin
149+
.idea/replstate.xml
150+
151+
# SonarLint plugin
152+
.idea/sonarlint/
153+
154+
# Crashlytics plugin (for Android Studio and IntelliJ)
155+
com_crashlytics_export_strings.xml
156+
crashlytics.properties
157+
crashlytics-build.properties
158+
fabric.properties
159+
160+
# Editor-based Rest Client
161+
.idea/httpRequests
162+
163+
# Android studio 3.1+ serialized cache file
164+
.idea/caches/build_file_checksums.ser
165+
2166
# Ignore build and test binaries.
3167
bin/
168+
169+
# More info: https://docs.docker.com/engine/reference/builder/#dockerignore-file

0 commit comments

Comments
 (0)