Merge branch 'main' of git.stroblme.de:Fluksio/app
Docs / docs (push) Successful in 28s
Playwright Tests / test-playwright (1, 2) (push) Failing after 1m14s
Playwright Tests / test-playwright (2, 2) (push) Failing after 27s
pre-commit / pre-commit (push) Failing after 2m12s
Test Backend / test-backend (push) Failing after 54s
Compose Smoke Test / test-compose (push) Failing after 21s
Playwright Tests / merge-reports (push) Failing after 1m4s
Docs / docs (push) Successful in 28s
Playwright Tests / test-playwright (1, 2) (push) Failing after 1m14s
Playwright Tests / test-playwright (2, 2) (push) Failing after 27s
pre-commit / pre-commit (push) Failing after 2m12s
Test Backend / test-backend (push) Failing after 54s
Compose Smoke Test / test-compose (push) Failing after 21s
Playwright Tests / merge-reports (push) Failing after 1m4s
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
# Docker reads .dockerignore only from the root of the build context, and every
|
||||
# service in docker/compose.yml builds with `context: ..` — this directory. The
|
||||
# copies under frontend/ and backend/ were therefore never consulted, and the
|
||||
# host's stale build outputs and node_modules were shipped into every build.
|
||||
#
|
||||
# Keep `package.json` and `bun.lock` at this root: frontend/Dockerfile copies
|
||||
# them before the workspace install.
|
||||
|
||||
# Build outputs — regenerated inside the image.
|
||||
**/dist
|
||||
**/dist-ssr
|
||||
site
|
||||
|
||||
# Dependencies — installed inside the image, and the host copies are built for
|
||||
# the host's platform.
|
||||
**/node_modules
|
||||
**/.venv
|
||||
|
||||
# Caches
|
||||
**/__pycache__
|
||||
**/*.pyc
|
||||
**/.mypy_cache
|
||||
**/.ruff_cache
|
||||
**/.pytest_cache
|
||||
**/.cache
|
||||
**/.vite
|
||||
**/.tanstack
|
||||
**/fluksio.egg-info
|
||||
**/.coverage
|
||||
**/htmlcov
|
||||
|
||||
# Test artefacts
|
||||
**/playwright-report
|
||||
**/test-results
|
||||
**/screenshots
|
||||
|
||||
# Secrets never belong in a build context. Values reach the build as ARGs and
|
||||
# the runtime as compose `environment`.
|
||||
**/.env
|
||||
**/.env.*
|
||||
!**/.env.example
|
||||
|
||||
.git
|
||||
**/*.log
|
||||
**/.DS_Store
|
||||
Reference in New Issue
Block a user