Llama.ui / Dockerfile
Yahir's picture
Create Dockerfile
dce1443
raw
history blame
390 Bytes
FROM python:3.9
RUN apt install -y cmake make gcc g++ git
git clone https://github.com/ggerganov/llama.cpp
RUN mv llama.cpp/* /code
cd code && make -j
cd /code && wget wget https://huggingface.co/eachadea/legacy-ggml-vicuna-13b-4bit/resolve/main/ggml-vicuna-13b-4bit.bin
WORKDIR /code
RUN pip install streamlit
COPY app.py /code
CMD ["streamlit", "run", "--server.port", "7860", "app.py"]