mirror of
https://github.com/TheBlewish/Automated-AI-Web-Researcher-Ollama.git
synced 2025-04-23 10:09:11 +00:00
Add gcc and g++ installation to Dockerfile
* Install gcc and g++ to fix the llama-cpp-python build error
This commit is contained in:
parent
bd9f8edda3
commit
2d4aea4638
1 changed files with 3 additions and 0 deletions
|
@ -1,6 +1,9 @@
|
|||
# Use an official Python runtime as a parent image
|
||||
FROM python:3.9-slim
|
||||
|
||||
# Install gcc and g++ to fix the llama-cpp-python build error
|
||||
RUN apt-get update && apt-get install -y gcc g++
|
||||
|
||||
# Set the working directory in the container
|
||||
WORKDIR /app
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue