# Stage 1: Build stage FROM python:3.13-slim as builder # Set working directory WORKDIR /app # Copy requirements COPY requirements.txt . # Install dependencies RUN pip install --no-cache-dir -r requirements.txt # Copy application code COPY backend . # Command to run the application CMD ["echo", "this is backend code"]