Fix Dokploy Docker caching issue - force no-cache build

- Add "buildOptions": ["--no-cache"] to dokploy.json
- Remove temporary comment from requirements.txt
- Forces Dokploy to rebuild all layers and install django-ratelimit properly
- No changes to application code - works as-is on CapRover

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
thecyberlearn 2025-09-05 03:16:25 +05:30
parent 5259a8d17e
commit e7fef02176
2 changed files with 1 additions and 2 deletions

View File

@ -4,6 +4,7 @@
"dockerfile": "./Dockerfile.dokploy",
"port": 3000,
"buildArgs": {},
"buildOptions": ["--no-cache"],
"env": {
"PYTHONUNBUFFERED": "1"
}

View File

@ -3,8 +3,6 @@ Django==5.2.4
djangorestframework==3.15.2
python-decouple==3.8
# Force Docker rebuild - updated 2025-09-04
# Database
dj-database-url==2.1.0
psycopg2-binary==2.9.10