summaryrefslogtreecommitdiff
path: root/services/order-executor/Dockerfile
blob: f044714f8b040f748ece1546c7a81e752e359f15 (plain)
1
2
3
4
5
6
7
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
CMD ["python", "-m", "order_executor.main"]