-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.dockerignore
More file actions
64 lines (58 loc) · 1.22 KB
/
Copy path.dockerignore
File metadata and controls
64 lines (58 loc) · 1.22 KB
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
.git
.github
# -----------------------
# Secrets -- must never enter an image layer.
# docker/Dockerfile.api does `COPY apps/api .`, so an unignored apps/api/.env
# would be baked into the image along with its API keys.
# -----------------------
.env
.env.*
**/.env
**/.env.*
!.env.example
# -----------------------
# Dependencies / virtualenvs
# Both spellings: the checked-out venv is `.venv`, and only `venv` was listed
# before, so a ~470MB Darwin-built venv was being sent to a Linux image.
# -----------------------
node_modules
**/node_modules
venv
.venv
**/venv
**/.venv
# -----------------------
# Build outputs
# -----------------------
apps/web/.next
apps/web/tsconfig.tsbuildinfo
apps/web/next-env.d.ts
apps/web/pnpm-lock.yaml
apps/web/pnpm-workspace.yaml
dist
build
**/__pycache__
**/*.py[cod]
# -----------------------
# Test / coverage artifacts
# -----------------------
**/.pytest_cache
**/.ruff_cache
**/.coverage
**/.coverage*
**/coverage.xml
**/htmlcov
**/test_output.txt
# -----------------------
# Data & local state
# -----------------------
apps/api/data
data
Documents
*.log
# -----------------------
# Docs (a 6.7MB PNG lives here; nothing in either image needs it)
# -----------------------
docs
*.md
!README.md