Spaces:
Runtime error
Runtime error
gefiwek187
commited on
Commit
•
227ec78
1
Parent(s):
48b4058
Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
@@ -1,10 +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/Mozilla/Meta-Llama-3.1-8B-Instruct-llamafile/resolve/main/Meta-Llama-3.1-8B-Instruct.
|
5 |
-
RUN chmod +x Meta-Llama-3.1-8B-Instruct.
|
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 ./Meta-Llama-3.1-8B-Instruct.
|
|
|
1 |
FROM kalilinux/kali-rolling
|
2 |
RUN apt update && apt upgrade -y
|
3 |
RUN apt install wget -y
|
4 |
+
RUN wget https://huggingface.co/Mozilla/Meta-Llama-3.1-8B-Instruct-llamafile/resolve/main/Meta-Llama-3.1-8B-Instruct.Q4_0.llamafile
|
5 |
+
RUN chmod +x Meta-Llama-3.1-8B-Instruct.Q4_0.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 ./Meta-Llama-3.1-8B-Instruct.Q4_0.llamafile --host 0.0.0.0
|