# syntax = edrevo/dockerfile-plus

# robert:v3

INCLUDE+ ./Dockerfile.base

RUN apt-get update -y



COPY ./requirements.txt /dep/requirements.txt

RUN pip install -r /dep/requirements.txt --index https://mirrors.ustc.edu.cn/pypi/web/simple


RUN apt-get install -y parallel nodejs npm htop tree

RUN npm i -g n && n 18 && hash -r


CMD ["bash"]