File size: 868 Bytes
7ebd1f8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
FROM python:3.8

MAINTAINER "chatGLM"

COPY agent /chatGLM/agent

COPY chains /chatGLM/chains

COPY configs /chatGLM/configs

COPY content /chatGLM/content

COPY models /chatGLM/models

COPY nltk_data /chatGLM/content

COPY requirements.txt /chatGLM/

COPY cli_demo.py /chatGLM/

COPY textsplitter /chatGLM/

COPY webui.py /chatGLM/

WORKDIR /chatGLM

RUN pip install --user torch torchvision tensorboard cython -i https://pypi.tuna.tsinghua.edu.cn/simple
# RUN pip install --user 'git+https://github.com/cocodataset/cocoapi.git#subdirectory=PythonAPI'

# RUN pip install --user 'git+https://github.com/facebookresearch/fvcore'
# install detectron2
# RUN git clone https://github.com/facebookresearch/detectron2

RUN pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple/ --trusted-host pypi.tuna.tsinghua.edu.cn

CMD ["python","-u", "webui.py"]