-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
49 lines (40 loc) · 1.03 KB
/
Copy path.dockerignore
File metadata and controls
49 lines (40 loc) · 1.03 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
# Build artifacts (rebuilt inside the image). ** makes the pattern apply at any
# depth so the Tests project's bin/obj are also excluded.
**/bin/
**/obj/
# Test project — not shipped to production. csproj already excludes its sources
# from compile, but skipping it from the build context shrinks `docker build` time.
Office365SelfHostedLLMConnector.Tests/
# Dev-only metadata
.git/
.gitignore
.gitattributes
.vscode/
.idea/
.vs/
# Plugin/session state never needed at runtime
.omc/
.remember/
.claude/
# Add-in manifests are uploaded to Microsoft 365, not served by the app
addin/
# Local dev configs (the container uses env vars, not launchSettings)
Properties/launchSettings.json
appsettings.Development.json
# OS / editor noise
.DS_Store
Thumbs.db
*.log
# Markdown docs / PRDs / ADRs — not shipped in the runtime image
docs/
README*
*.md
# Docker artifacts themselves — copying them in would be circular
Dockerfile
docker-compose.yml
.dockerignore
# Secrets — must never enter an image layer
.env
.env.local
.env.*.local
.env.example