summaryrefslogtreecommitdiff
path: root/services/order-executor/Dockerfile
blob: bc8b21c6fbb346f8bb731760ea049e07884b5637 (plain)
1
2
3
4
5
6
7
8
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"]