# Django Application Cloudron Package FROM python:3-slim # Install system dependencies RUN apt-get update && apt-get install -y --no-install-recommends \ curl \ gosu \ libpq-dev \ gcc \ postgresql-client \ && rm -rf /var/lib/apt/lists/* # Set working directory WORKDIR /app # Copy requirements COPY requirements.txt . # Install Python dependencies RUN pip install --no-cache-dir -r requirements.txt # Copy application code COPY . . # Copy start script (make it executable on host first!) COPY start.sh /app/start.sh RUN chmod +x /app/start.sh # Set environment ENV PYTHONUNBUFFERED=1 # Expose port EXPOSE 8080 # Health check HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \ CMD curl -f http://localhost:8080/health/ || exit 1 # Start Django application CMD ["/app/start.sh"]