up
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
|
@@ -27,8 +27,10 @@ USER user
|
|
| 27 |
COPY --chown=user ./requirements.txt requirements.txt
|
| 28 |
|
| 29 |
# Install dependencies
|
|
|
|
| 30 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 31 |
|
|
|
|
| 32 |
# Copy the application code into the container
|
| 33 |
COPY --chown=user ./llm.py /app/llm.py
|
| 34 |
COPY --chown=user ./llama-3.2-1b-instruct-q4_k_m.gguf /app/llama-3.2-1b-instruct-q4_k_m.gguf
|
|
|
|
| 27 |
COPY --chown=user ./requirements.txt requirements.txt
|
| 28 |
|
| 29 |
# Install dependencies
|
| 30 |
+
RUN pip install llama-cpp-python
|
| 31 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 32 |
|
| 33 |
+
|
| 34 |
# Copy the application code into the container
|
| 35 |
COPY --chown=user ./llm.py /app/llm.py
|
| 36 |
COPY --chown=user ./llama-3.2-1b-instruct-q4_k_m.gguf /app/llama-3.2-1b-instruct-q4_k_m.gguf
|