feat: containerize backend and frontend services

This commit is contained in:
ramvignesh-b
2026-04-22 19:14:21 +05:30
parent 59ea95a912
commit a986878a3b
5 changed files with 73 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM astral/uv:python3.13-bookworm-slim
WORKDIR /app
COPY pyproject.toml uv.lock ./
RUN uv sync --frozen --no-dev
COPY . .
EXPOSE 8000
CMD ["uv", "run", "--frozen", "gunicorn", "--bind", "0.0.0.0:8000", "config.wsgi:application"]