-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.dockerignore
More file actions
28 lines (24 loc) · 856 Bytes
/
Copy path.dockerignore
File metadata and controls
28 lines (24 loc) · 856 Bytes
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
# Keep the build context small, but never at the cost of a working build.
#
# An earlier version of this file pruned inside vendor/ — docs, examples, tests.
# That broke the image: tinyagents declares explicit `[[example]]` entries, so
# removing examples/ makes cargo refuse to parse its manifest at all. Vendored
# crates are now left intact apart from their build output. The context is a few
# megabytes larger and the build works, which is the right trade.
target/
**/target/
worktrees/
.git/
.github/
docs/
gitbooks/
.env
# GitHub App credentials written by scripts/create-github-app.sh. Gitignored,
# but .gitignore does not govern the Docker build context: without this line a
# `docker build .` ships the App private key to the daemon and bakes it into a
# builder layer via `COPY . .`.
.tinysweeper-app.json
.idea/
.vscode/
*.swp
.DS_Store