Spaces:
Sleeping
Sleeping
Ved Gupta commited on
Commit ·
b8cad3b
1
Parent(s): 074add9
Update Dockerfile to remove unnecessary software-properties-common and add missing gcc dependency
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
FROM python:3.9-alpine
|
| 2 |
|
| 3 |
-
RUN apk add --no-cache build-base cmake git wget
|
| 4 |
|
| 5 |
RUN mkdir models
|
| 6 |
RUN wget -q "https://huggingface.co/TheBloke/Mistral-7B-Instruct-v0.2-GGUF/resolve/main/mistral-7b-instruct-v0.2.Q4_0.gguf" -O models/mistral-7b-instruct-v0.2.Q4_0.gguf
|
|
|
|
| 1 |
FROM python:3.9-alpine
|
| 2 |
|
| 3 |
+
RUN apk add --no-cache build-base cmake git wget gcc g++ make
|
| 4 |
|
| 5 |
RUN mkdir models
|
| 6 |
RUN wget -q "https://huggingface.co/TheBloke/Mistral-7B-Instruct-v0.2-GGUF/resolve/main/mistral-7b-instruct-v0.2.Q4_0.gguf" -O models/mistral-7b-instruct-v0.2.Q4_0.gguf
|