shaikatasif's picture
Create Dockerfile
9b02066 verified
raw
history blame contribute delete
495 Bytes
FROM kalilinux/kali-rolling
RUN apt update && apt upgrade -y
RUN apt install wget -y
RUN wget https://huggingface.co/shaikatasif/tiny-vicuna/resolve/main/tiny-vicuna-1b.q8_0.llamafile.exe
RUN mv tiny-vicuna-1b.q8_0.llamafile.exe tiny-vicuna-1b.q8_0.llamafile
RUN chmod +x tiny-vicuna-1b.q8_0.llamafile
RUN apt install adduser -y
RUN addgroup --gid 1000 user
RUN adduser --uid 1000 --gid 1000 --disabled-password --gecos "" user
USER user
ENTRYPOINT ./tiny-vicuna-1b.q8_0.llamafile --host 0.0.0.0