FROM python:3.12-slim WORKDIR /app COPY shared/ shared/ RUN pip install --no-cache-dir ./shared COPY services/order-executor/ services/order-executor/ RUN pip install --no-cache-dir ./services/order-executor ENV PYTHONPATH=/app CMD ["python", "-m", "order_executor.main"]