diff options
Diffstat (limited to 'services/order-executor/Dockerfile')
| -rw-r--r-- | services/order-executor/Dockerfile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/services/order-executor/Dockerfile b/services/order-executor/Dockerfile new file mode 100644 index 0000000..f044714 --- /dev/null +++ b/services/order-executor/Dockerfile @@ -0,0 +1,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"] |
