codefuse-chatbot/Dockerfile

12 lines
310 B
Docker
Raw Normal View History

2023-09-28 10:58:58 +08:00
From python:3.9-bookworm
WORKDIR /home/user
COPY ./docker_requirements.txt /home/user/docker_requirements.txt
COPY ./jupyter_start.sh /home/user/jupyter_start.sh
RUN pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
RUN pip install -r /home/user/docker_requirements.txt
CMD ["bash"]