23 lines
649 B
Plaintext
23 lines
649 B
Plaintext
# Context for LaDOSE.Src/Dockerfile.
|
|
#
|
|
# The previous patterns here were */*/bin* and */*/obj*, which matched nothing: this
|
|
# context is rooted at LaDOSE.Src, so build output sits one level down (LaDOSE.Api/bin),
|
|
# not two.
|
|
**/bin/
|
|
**/obj/
|
|
|
|
# The frontend is a separate image with its own context (LaDOSE.WebApp/Dockerfile).
|
|
# Its node_modules alone was adding ~118 MB to every API build.
|
|
LaDOSE.WebApp/node_modules/
|
|
LaDOSE.WebApp/build/
|
|
LaDOSE.WebApp/.svelte-kit/
|
|
|
|
# Local state and editor noise. Note Libraries/ is NOT excluded: LaDOSE.Business
|
|
# references ChallongeCSharpDriver.dll from there by HintPath.
|
|
.git
|
|
.vs/
|
|
.vscode/
|
|
.idea/
|
|
*.user
|
|
*.suo
|