Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker-interactive/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ RUN DEBIAN_FRONTEND=noninteractive \

COPY ./rkllm_toolkit-1.1.2-cp310-cp310-linux_x86_64.whl /root/wheels

RUN python3 -m pip install inquirer /root/wheels/rkllm_toolkit-1.1.2-cp310-cp310-linux_x86_64.whl xformers
RUN python3 -m pip install inquirer /root/wheels/rkllm_toolkit-1.1.2-cp310-cp310-linux_x86_64.whl xformers pyarrow==11.0.0 datasets==2.14.5 tqdm==4.64.1

COPY ./interactive_pipeline.py /root/toolkit/

WORKDIR /root/toolkit

CMD /usr/bin/python3 ./interactive_pipeline.py
CMD /usr/bin/python3 ./interactive_pipeline.py
2 changes: 1 addition & 1 deletion docker-noninteractive/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN DEBIAN_FRONTEND=noninteractive \

COPY ./rkllm_toolkit-1.1.2-cp310-cp310-linux_x86_64.whl /root/wheels

RUN python3 -m pip install inquirer /root/wheels/rkllm_toolkit-1.1.2-cp310-cp310-linux_x86_64.whl xformers
RUN python3 -m pip install inquirer /root/wheels/rkllm_toolkit-1.1.2-cp310-cp310-linux_x86_64.whl xformers pyarrow==11.0.0 datasets==2.14.5 tqdm==4.64.1

COPY ./noninteractive_pipeline.py /root/toolkit/

Expand Down