summaryrefslogtreecommitdiff
path: root/services/backtester/Dockerfile
blob: 77ec4537ed9542e0b86d4d41eeab5bf039846149 (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/backtester/ services/backtester/
RUN pip install --no-cache-dir ./services/backtester
CMD ["python", "-m", "backtester.main"]