github-actions[bot] commited on
Commit ·
fab304c
1
Parent(s): d69ef62
Auto-deploy from GitHub: 89ba77af27441de87911fcf703c5b7ba526ac07d
Browse files- Dockerfile +3 -0
- requirements.txt +2 -2
Dockerfile
CHANGED
|
@@ -10,6 +10,9 @@ RUN apt-get update && apt-get install -y \
|
|
| 10 |
build-essential \
|
| 11 |
&& rm -rf /var/lib/apt/lists/*
|
| 12 |
|
|
|
|
|
|
|
|
|
|
| 13 |
COPY requirements.txt .
|
| 14 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 15 |
|
|
|
|
| 10 |
build-essential \
|
| 11 |
&& rm -rf /var/lib/apt/lists/*
|
| 12 |
|
| 13 |
+
# Install Ollama
|
| 14 |
+
RUN curl -fsSL https://ollama.com/install.sh | sh
|
| 15 |
+
|
| 16 |
COPY requirements.txt .
|
| 17 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 18 |
|
requirements.txt
CHANGED
|
@@ -2,5 +2,5 @@ Flask==3.0.0
|
|
| 2 |
flask-cors==4.0.0
|
| 3 |
werkzeug==3.0.1
|
| 4 |
|
| 5 |
-
# TTT
|
| 6 |
-
ttt-runner
|
|
|
|
| 2 |
flask-cors==4.0.0
|
| 3 |
werkzeug==3.0.1
|
| 4 |
|
| 5 |
+
# TTT
|
| 6 |
+
ttt-runner @ git+https://github.com/jebin2/TTT.git
|