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.

lifelong-learning-atcii-classifier.Dockerfile 407 B

12345678910111213141516171819
  1. FROM python:3.6-slim
  2. COPY ./lib/requirements.txt /home
  3. # install requirements of sedna lib
  4. RUN pip install --upgrade pip
  5. RUN pip install -r /home/requirements.txt
  6. RUN pip install joblib~=1.0.1
  7. RUN pip install scikit-learn~=0.24.1
  8. RUN pip install xgboost~=1.3.3
  9. ENV PYTHONPATH "/home/lib"
  10. WORKDIR /home/work
  11. COPY ./lib /home/lib
  12. COPY examples/lifelong_learning/atcii /home/work/
  13. ENTRYPOINT ["python"]