Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
|
@@ -36,11 +36,11 @@ WORKDIR /app
|
|
| 36 |
COPY --from=build /build/llama.cpp/build/bin/server /app
|
| 37 |
COPY --from=build /build/llama.cpp/examples/server/public /app/public
|
| 38 |
COPY ./run.sh /app/run.sh
|
| 39 |
-
WORKDIR /app
|
| 40 |
|
| 41 |
-
|
|
|
|
| 42 |
EXPOSE 7860
|
| 43 |
-
|
| 44 |
# Make the script executable
|
| 45 |
RUN chmod +x run.sh
|
| 46 |
|
|
|
|
| 36 |
COPY --from=build /build/llama.cpp/build/bin/server /app
|
| 37 |
COPY --from=build /build/llama.cpp/examples/server/public /app/public
|
| 38 |
COPY ./run.sh /app/run.sh
|
|
|
|
| 39 |
|
| 40 |
+
WORKDIR /models
|
| 41 |
+
RUN wget https://huggingface.co/TheBloke/Mixtral-8x7B-Instruct-v0.1-GGUF/resolve/main/mixtral-8x7b-instruct-v0.1.Q2_K.gguf -nv -O mixtral-8x7b-instruct-v0.1.Q2_K.gguf
|
| 42 |
EXPOSE 7860
|
| 43 |
+
WORKDIR /app
|
| 44 |
# Make the script executable
|
| 45 |
RUN chmod +x run.sh
|
| 46 |
|