|
12345678910111213141516171819 |
- FROM python:3.6-slim
-
- COPY ./lib/requirements.txt /home
- # install requirements of sedna lib
- RUN pip install --upgrade pip
- RUN pip install -r /home/requirements.txt
- RUN pip install joblib~=1.0.1
- 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"]
|