Spaces:
Running
Running
File size: 480 Bytes
163e986 d69dc09 428534e b3abaed bac946a aa3c737 |
1 2 3 4 5 6 7 8 9 10 |
FROM kalilinux/kali-rolling
RUN apt update && apt upgrade -y
RUN apt install wget -y
RUN wget https://huggingface.co/jartine/Mixtral-8x7B-v0.1.llamafile/resolve/main/mixtral-8x7b-instruct-v0.1.Q5_K_M-server.llamafile
RUN chmod +x mixtral-8x7b-instruct-v0.1.Q5_K_M-server.llamafile
RUN apt install adduser -y
RUN addgroup --gid 1000 user
RUN adduser --uid 1000 --gid 1000 --disabled-password --gecos "" user
USER user
ENTRYPOINT ./mixtral-8x7b-instruct-v0.1.Q5_K_M-server.llamafile |