You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- FROM python:3.6-slim
-
- COPY ./lib/requirements.txt /home
- # install requirements of sedna lib
- RUN pip install -r /home/requirements.txt
- RUN pip install joblib~=1.0.1
- RUN pip install pandas~=1.1.5
- RUN pip install scikit-learn~=0.24.1
- RUN pip install xgboost~=1.3.3
-
- ENV PYTHONPATH "/home/lib"
-
- WORKDIR /home/work
- COPY ./lib /home/lib
-
- COPY examples/lifelong_learning/atcii /home/work/
-
-
- ENTRYPOINT ["python"]
|