MarcoAland commited on
Commit
af59e4b
1 Parent(s): f38d5fb
Files changed (1) hide show
  1. Dockerfile +5 -1
Dockerfile CHANGED
@@ -9,7 +9,11 @@ WORKDIR /app
9
  COPY --chown=user ./requirements.txt requirements.txt
10
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
11
 
12
- RUN sudo curl -fsSL https://ollama.com/install.sh | sh
 
 
 
 
13
  RUN ollama serve & ollama pull MarcoAland/llama3.1-rag-indo
14
 
15
  COPY --chown=user . /app
 
9
  COPY --chown=user ./requirements.txt requirements.txt
10
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
11
 
12
+ RUN apt-get update && \
13
+ apt-get install -y curl
14
+
15
+ RUN curl -fsSL https://ollama.com/install.sh | sh
16
+
17
  RUN ollama serve & ollama pull MarcoAland/llama3.1-rag-indo
18
 
19
  COPY --chown=user . /app