Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -1,2 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
| 1 |
FROM ghcr.io/open-webui/open-webui:ollama
|
| 2 |
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8080"]
|
|
|
|
| 1 |
+
RUN mkdir -p /app/backend && cd /app/backend && git init
|
| 2 |
+
RUN pip install GitPython
|
| 3 |
+
|
| 4 |
FROM ghcr.io/open-webui/open-webui:ollama
|
| 5 |
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8080"]
|