Spaces:
Running
Running
randomtable
commited on
Commit
•
b87df1f
1
Parent(s):
a3ab162
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -2,9 +2,9 @@ FROM kalilinux/kali-rolling
|
|
2 |
RUN apt update && apt upgrade -y
|
3 |
RUN apt install wget -y
|
4 |
RUN wget https://huggingface.co/jartine/llava-v1.5-7B-GGUF/resolve/main/llava-v1.5-7b-q4.llamafile
|
5 |
-
RUN chmod +x llava-v1.5-7b-q4
|
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 ./llava-v1.5-7b-q4
|
|
|
2 |
RUN apt update && apt upgrade -y
|
3 |
RUN apt install wget -y
|
4 |
RUN wget https://huggingface.co/jartine/llava-v1.5-7B-GGUF/resolve/main/llava-v1.5-7b-q4.llamafile
|
5 |
+
RUN chmod +x llava-v1.5-7b-q4.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 ./llava-v1.5-7b-q4.llamafile --host 0.0.0.0
|