-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
36 lines (30 loc) · 876 Bytes
/
Copy path.dockerignore
File metadata and controls
36 lines (30 loc) · 876 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
28
29
30
31
32
33
34
35
36
# Docker build context excludes for the repo-root Dockerfile (`COPY . .`).
#
# The build only needs: root pom.xml + .mvn/mvnw, viestinvalitys-service/ and
# viestinvalitys-ui/ (npm ci + webpack rebuild node_modules and the static output;
# mvn package rebuilds target/). Everything below is either rebuilt inside the
# container or irrelevant to the image, and excluding it keeps the DockerImageAsset
# hash from churning on unrelated file changes.
# VCS & tooling metadata
.git
.github
.idea
.metals
.vscode
.airlock
# Build outputs (rebuilt in-container)
**/target
**/cdk.out
**/dist
**/build
# Dependencies (reinstalled by npm ci)
**/node_modules
# Infra (not part of the service/UI image)
infra
# Logs, test artifacts and OS cruft
**/*.log
playwright/test-results
playwright/playwright-report
**/.DS_Store
# Docs / scratch notes (not needed to build the image)
*.md