xpeditis2.0/apps/frontend/.dockerignore
David d8007c0887
All checks were successful
CI/CD Pipeline / Backend - Build, Test & Push (push) Successful in 17m2s
CI/CD Pipeline / Frontend - Build, Test & Push (push) Successful in 31m59s
CI/CD Pipeline / Integration Tests (push) Has been skipped
CI/CD Pipeline / Deployment Summary (push) Successful in 1s
fix: allow package-lock.json in frontend Docker build
The .dockerignore was excluding package-lock.json, causing npm ci to fail
with "The npm ci command can only install with an existing package-lock.json".

Commented out the package-lock.json line in .dockerignore to allow it to be
copied into the Docker build context.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-17 12:33:10 +01:00

100 lines
1.0 KiB
Plaintext

# Dependencies
node_modules
npm-debug.log
yarn-error.log
# package-lock.json is needed for npm ci in Docker builds
yarn.lock
pnpm-lock.yaml
# Next.js build output
.next
out
dist
build
# Tests
coverage
.nyc_output
**/__tests__
**/__mocks__
*.spec.ts
*.test.ts
*.spec.tsx
*.test.tsx
e2e
playwright-report
test-results
# Environment files
.env
.env.local
.env.development
.env.test
.env.production
.env.*.local
# IDE
.vscode
.idea
*.swp
*.swo
*.swn
.DS_Store
# Git
.git
.gitignore
.gitattributes
.github
# Documentation
*.md
README.md
docs
documentation
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*
# Temporary files
tmp
temp
*.tmp
*.bak
*.cache
.turbo
# Docker
Dockerfile
.dockerignore
docker-compose*.yml
# CI/CD
.gitlab-ci.yml
.travis.yml
Jenkinsfile
azure-pipelines.yml
# Vercel
.vercel
# Other
.prettierrc
.prettierignore
.eslintrc.json
.eslintignore
postcss.config.js
tailwind.config.js
next-env.d.ts
tsconfig.tsbuildinfo
# Storybook
storybook-static
.storybook