Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -7,10 +7,10 @@ RUN apt update && apt install -y curl && rm -rf /var/lib/apt/lists/*
|
|
7 |
RUN curl -fsSL https://ollama.com/install.sh | bash
|
8 |
|
9 |
# Install OpenWebUI using pip
|
10 |
-
RUN pip install
|
11 |
|
12 |
# Expose the web UI port
|
13 |
EXPOSE 3000
|
14 |
|
15 |
# Start Ollama and OpenWebUI
|
16 |
-
CMD ["bash", "-c", "ollama serve &
|
|
|
7 |
RUN curl -fsSL https://ollama.com/install.sh | bash
|
8 |
|
9 |
# Install OpenWebUI using pip
|
10 |
+
RUN pip install open-webui
|
11 |
|
12 |
# Expose the web UI port
|
13 |
EXPOSE 3000
|
14 |
|
15 |
# Start Ollama and OpenWebUI
|
16 |
+
CMD ["bash", "-c", "ollama serve & ollama pull llama3.2 & open-webui serve"]
|