Spaces:
Runtime error
Runtime error
shaikatasif
commited on
Commit
•
129235e
1
Parent(s):
fe10ff4
Create Dockerfile
Browse files- Dockerfile +10 -0
Dockerfile
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM kalilinux/kali-rolling
|
2 |
+
RUN apt update && apt upgrade -y
|
3 |
+
RUN apt install wget -y
|
4 |
+
RUN wget https://huggingface.co/shaikatasif/BioMistral-7B-llamafile/resolve/main/BioMistral-7B.Q4_K_M.llamafile
|
5 |
+
RUN chmod +x BioMistral-7B.Q4_K_M.llamafile
|
6 |
+
RUN apt install adduser -y
|
7 |
+
RUN addgroup --gid 1000 user
|
8 |
+
RUN adduser --uid 1000 --gid 1000 --disabled-password --gecos "" user
|
9 |
+
USER user
|
10 |
+
ENTRYPOINT ./BioMistral-7B.Q4_K_M.llamafile --host 0.0.0.0
|