ChatGLM-6B/Dockerfile

10 lines
219 B
Docker

FROM python:3.7
WORKDIR /app
COPY . /app
ENV PIP_INDEX_URL https://pypi.tuna.tsinghua.edu.cn/simple
RUN pip install --upgrade pip && \
pip install -r requirements.txt --no-cache-dir
CMD [ "python","web_demo.py" ]