Merge pull request 'refactor(docker): replace uv with pip and move Django commands to runtime' (#20) from feature/meetings into main

Reviewed-on: https://gitea.blackbusinesslabs.com/ATTUNE-HEART-THERAPY/alternative-backend-service/pulls/20
This commit is contained in:
Saani 2025-11-23 19:12:56 +00:00
commit ceca8895e2

View File

@ -1,37 +1,32 @@
FROM debian:bookworm-slim FROM python:3.12-slim
# Set environment variables # Environment settings
ENV PYTHONDONTWRITEBYTECODE 1 ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED 1 ENV PYTHONUNBUFFERED=1
# Set work directory # Set work directory
WORKDIR /app WORKDIR /app
# System dependencies
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \
build-essential \ build-essential \
curl wget \ curl wget \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
RUN curl -LsSf https://astral.sh/uv/install.sh | sh # Copy dependency file
ENV PATH="/root/.local/bin:${PATH}" COPY requirements.txt .
# Copy only the dependency definitions first to leverage Docker's layer caching # Install Python dependencies
COPY pyproject.toml uv.lock .python-version ./ RUN pip install --no-cache-dir -r requirements.txt
# Install Python dependencies for production # Copy project files
RUN uv sync --no-group dev --group prod
# Copy the rest of the application code into the container
COPY . . COPY . .
# Collect the static files # Expose port
RUN uv run --no-sync ./manage.py collectstatic --noinput
# Migrate the database
RUN uv run --no-sync ./manage.py migrate
# Expose the port Gunicorn will run on
EXPOSE 8000 EXPOSE 8000
# Run with gunicorn # Run migrations + collectstatic + gunicorn at runtime
CMD ["uv", "run", "--no-sync", "gunicorn", "--bind", "0.0.0.0:8000", "--workers", "3", "--access-logfile", "-", "--error-logfile", "-", "--log-level", "info", "config.wsgi:application"] CMD \
python manage.py migrate && \
python manage.py collectstatic --noinput && \
gunicorn config.wsgi:application --bind 0.0.0.0:8000 --workers 3