quantitative_factor_evaluation/Dockerfile

14 lines
226 B
Docker
Raw Permalink Normal View History

2025-11-17 13:32:48 +08:00
FROM python:3.11
WORKDIR /app
COPY . /app
RUN pip3 config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
RUN pip3 config set install.trusted-host mirrors.aliyun.com
RUN pip3 install -r requirements.txt