1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# What `docker build` should not carry to the daemon, for the one Dockerfile
# in this tree (.modal/web/Dockerfile). All of it is either generated by the
# build that is about to happen or state belonging to the machine running it,
# and .toolchain alone is 3.3GB of SDK that the image fetches for itself by
# sha256 anyway.
#
# The same list, in the same spirit, as `[build] ignore` in
# .modal/dev/container.toml -- one mechanism uploads to Modal and the other
# to a docker daemon, and neither wants a laptop's build tree.
.git
.toolchain/
build/
flutter/build/
flutter/.home/
flutter/.dart_tool/
dart/*/.dart_tool/
nim/nimcache/
.cpcache/
.clj-kondo/
.lsp/
result
result-*
__pycache__/
.web-local/
|