llama-2-13b-chat/Dockerfile

11 lines
195 B
Docker

FROM python:3.10-slim-buster
WORKDIR /app
COPY . /app
RUN pip config set global.index-url https://pypi.mirrors.ustc.edu.cn/simple
RUN pip install -r requirements.txt
CMD ["python", "app.py"]