build: add Python dependencies and Docker setup

This commit is contained in:
2026-04-28 12:36:29 +02:00
parent e930989c98
commit 538e88fff3
3 changed files with 63 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
FROM python:3.12-slim
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
gcc libpq-dev \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install uv && uv pip install --system -r requirements.txt
COPY . .
RUN mkdir -p /app/media /app/static
EXPOSE 8000
CMD ["sh", "-c", "python manage.py makemigrations chat && python manage.py migrate --noinput && python manage.py init_admin && python manage.py collectstatic --noinput && daphne -b 0.0.0.0 -p 8000 core.asgi:application"]