Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -4,7 +4,7 @@ WORKDIR /app
|
|
4 |
|
5 |
COPY requirements.txt ollama.sh ollama.js ./
|
6 |
|
7 |
-
RUN apt
|
8 |
curl https://ollama.ai/install.sh | sh && \
|
9 |
pip install --no-cache-dir -r requirements.txt && \
|
10 |
chmod +x ollama.sh
|
|
|
4 |
|
5 |
COPY requirements.txt ollama.sh ollama.js ./
|
6 |
|
7 |
+
RUN apt update && apt install -y curl netcat && \
|
8 |
curl https://ollama.ai/install.sh | sh && \
|
9 |
pip install --no-cache-dir -r requirements.txt && \
|
10 |
chmod +x ollama.sh
|