rohith2157 commited on
Commit
1c1174b
·
verified ·
1 Parent(s): 2d91dd7
Files changed (1) hide show
  1. Dockerfile +13 -0
Dockerfile ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.10-slim
2
+
3
+ WORKDIR /app
4
+
5
+ # Install the engine (Same engine Ollama uses)
6
+ RUN apt-get update && apt-get install -y build-essential cmake git
7
+ RUN pip install --no-cache-dir gradio huggingface_hub llama-cpp-python
8
+
9
+ # Copy the app
10
+ COPY . .
11
+
12
+ # Start the server
13
+ CMD ["python", "app.py"]