28 lines
583 B
Docker
28 lines
583 B
Docker
|
|
# Per-Dockerfile ignore (BuildKit picks up `<Dockerfile>.dockerignore` in
|
||
|
|
# preference to the root `.dockerignore` for THIS Dockerfile only).
|
||
|
|
#
|
||
|
|
# Keep the build context small: the builder stage runs a clean `bun install`
|
||
|
|
# and `bun run build` inside the image, so none of the host's build outputs
|
||
|
|
# are needed.
|
||
|
|
|
||
|
|
.git
|
||
|
|
.github
|
||
|
|
.vscode
|
||
|
|
|
||
|
|
# JS build outputs — rebuilt inside the image, never copied in.
|
||
|
|
node_modules
|
||
|
|
dist
|
||
|
|
dist-ssr
|
||
|
|
*.tsbuildinfo
|
||
|
|
coverage
|
||
|
|
|
||
|
|
# Desktop + test artifacts.
|
||
|
|
desktop/target
|
||
|
|
tests/results
|
||
|
|
playwright-report
|
||
|
|
|
||
|
|
# Local scratch / docs.
|
||
|
|
.openpencil-tmp
|
||
|
|
screenshot
|
||
|
|
*.md
|