Spaces:
Runtime error
Runtime error
Commit
·
bac946a
1
Parent(s):
aa3c737
Update Dockerfile
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
|
@@ -3,4 +3,8 @@ RUN apt update && apt upgrade -y
|
|
| 3 |
RUN apt install wget -y
|
| 4 |
RUN wget https://huggingface.co/jartine/Mixtral-8x7B-v0.1.llamafile/resolve/main/mixtral-8x7b-instruct-v0.1.Q5_K_M-server.llamafile
|
| 5 |
RUN chmod +x mixtral-8x7b-instruct-v0.1.Q5_K_M-server.llamafile
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
ENTRYPOINT ./mixtral-8x7b-instruct-v0.1.Q5_K_M-server.llamafile
|
|
|
|
| 3 |
RUN apt install wget -y
|
| 4 |
RUN wget https://huggingface.co/jartine/Mixtral-8x7B-v0.1.llamafile/resolve/main/mixtral-8x7b-instruct-v0.1.Q5_K_M-server.llamafile
|
| 5 |
RUN chmod +x mixtral-8x7b-instruct-v0.1.Q5_K_M-server.llamafile
|
| 6 |
+
RUN addgroup --gid 1000 user
|
| 7 |
+
RUN adduser --uid 1000 --gid 1000 --disabled-password --gecos "" user
|
| 8 |
+
USER user
|
| 9 |
+
WORKDIR /usr/src/app
|
| 10 |
ENTRYPOINT ./mixtral-8x7b-instruct-v0.1.Q5_K_M-server.llamafile
|