FROM python:3.11-slim WORKDIR /app # Install dependencies COPY ./translator/requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Copy shared modules COPY ./shared /app/shared # Copy application code COPY ./translator /app CMD ["python", "translator.py"]