- Fixed yarn.lock symlink issue causing Docker build failures - Updated Dockerfile to use --immutable instead of deprecated --frozen-lockfile - Added Prisma client generation in Docker build - Updated .dockerignore to exclude unnecessary files - Added OpenSSL dependency for Prisma in Alpine Linux
64 lines
696 B
Plaintext
64 lines
696 B
Plaintext
|
|
# Dependencies
|
|
node_modules
|
|
nextjs_space/node_modules
|
|
npm-debug.log
|
|
|
|
# Next.js build output
|
|
nextjs_space/.next
|
|
.next
|
|
|
|
# Testing
|
|
coverage
|
|
.nyc_output
|
|
|
|
# Misc
|
|
.DS_Store
|
|
*.pem
|
|
|
|
# Environment variables (except example)
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Debug logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Documentation (не нужны в образе)
|
|
README.md
|
|
README.deployment.md
|
|
DATABASE.md
|
|
DATABASE.pdf
|
|
|
|
# Docker files
|
|
Dockerfile
|
|
docker-compose.yml
|
|
.dockerignore
|
|
|
|
# Scripts
|
|
*.sh
|
|
|
|
# Backups
|
|
backups/
|
|
*.sql
|
|
*.sql.gz
|
|
|
|
# Config examples
|
|
nginx.conf.example
|
|
traefik-config-example.yml
|