Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +4 -4
Dockerfile
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
FROM python:3.10 as base
|
3 |
|
4 |
# Set model
|
5 |
-
ENV MODEL=
|
6 |
-
ENV QUANT=
|
7 |
-
ENV CHAT_TEMPLATE=
|
8 |
|
9 |
# Set the working directory
|
10 |
WORKDIR /app
|
@@ -14,7 +14,7 @@ COPY ./requirements.txt /app/
|
|
14 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
15 |
|
16 |
# Download model
|
17 |
-
RUN wget https://huggingface.co/
|
18 |
|
19 |
# Copy the rest of your application
|
20 |
COPY . .
|
|
|
2 |
FROM python:3.10 as base
|
3 |
|
4 |
# Set model
|
5 |
+
ENV MODEL=LSX-UniWue/LLaMmlein_1B_chat_selected
|
6 |
+
ENV QUANT=BF16
|
7 |
+
ENV CHAT_TEMPLATE=chatml
|
8 |
|
9 |
# Set the working directory
|
10 |
WORKDIR /app
|
|
|
14 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
15 |
|
16 |
# Download model
|
17 |
+
RUN wget https://huggingface.co/LSX-UniWue/LLaMmlein_1B_alternative_formats/resolve/LLaMmlein_1B_chat_selected/LLaMmlein_1B_chat_selected.gguf -O model.gguf
|
18 |
|
19 |
# Copy the rest of your application
|
20 |
COPY . .
|