mirror of
https://github.com/kjanat/livegraphs-django.git
synced 2026-02-13 18:55:42 +01:00
- build(pre-commit): upgrade hooks (django-upgrade 1.29.1, uv 0.9.7, ruff 0.14.3, bandit 1.8.6) - build(pre-commit): add uv-lock hook, tombi TOML formatter, prettier-plugin-packagejson - build(pre-commit): disable Django check hooks (commented out) - build(pre-commit): switch npx → bunx for prettier execution - build(node): add bun.lock, update prettier config with schema + packagejson plugin - style: apply ruff format to all Python files (comments, spacing, imports) - style: apply prettier format to all JS/CSS files (comment styles, spacing) - style: apply tombi format to pyproject.toml (reordered sections, consistent formatting) - chore: remove emoji from bash script comments for consistency BREAKING CHANGE: Django check and migration check hooks disabled in pre-commit config
44 lines
683 B
Docker
44 lines
683 B
Docker
# Dockerfile
|
|
|
|
FROM python:3.13-slim
|
|
|
|
# Set environment variables
|
|
|
|
ENV PYTHONDONTWRITEBYTECODE 1
|
|
ENV PYTHONUNBUFFERED 1
|
|
ENV DJANGO_SETTINGS_MODULE=dashboard_project.settings
|
|
|
|
# Set work directory
|
|
|
|
WORKDIR /app
|
|
|
|
# Install UV for Python package management
|
|
|
|
RUN pip install uv
|
|
|
|
# Copy project files
|
|
|
|
COPY pyproject.toml .
|
|
COPY uv.lock .
|
|
COPY . .
|
|
|
|
# Install dependencies
|
|
|
|
RUN uv pip install -e .
|
|
|
|
# Change to the Django project directory
|
|
|
|
WORKDIR /app/dashboard_project
|
|
|
|
# Collect static files
|
|
|
|
RUN python manage.py collectstatic --noinput
|
|
|
|
# Change back to the app directory
|
|
|
|
WORKDIR /app
|
|
|
|
# Run gunicorn
|
|
|
|
CMD ["gunicorn", "dashboard_project.wsgi:application", "--bind", "0.0.0.0:8000"]
|