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