This commit is contained in:
2025-09-09 06:04:29 -07:00
parent a62b4e8c12
commit 2cc2b4c9ce
33 changed files with 6066 additions and 322 deletions

View File

@@ -15,7 +15,7 @@ RUN apt-get update && \
WORKDIR /app
# Install Python dependencies
COPY backend/requirements.txt .
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Runtime stage
@@ -39,7 +39,7 @@ COPY --from=builder /usr/local/lib/python3.11/site-packages /usr/local/lib/pytho
COPY --from=builder /usr/local/bin /usr/local/bin
# Copy application code
COPY backend/ .
COPY . .
# Create entrypoint script for migration handling
RUN echo '#!/bin/bash\n\