sschellhammer commited on
Commit
b5818ee
·
verified ·
1 Parent(s): ec195ce

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -29,7 +29,9 @@ RUN apt-get update && apt-get install -y \
29
  #RUN pip install ollama
30
 
31
  RUN git clone https://github.com/SEBSCHELLI/potato.git /app
32
- RUN pip install -r requirements.txt
 
 
33
 
34
  COPY --chown=user . /app
35
 
 
29
  #RUN pip install ollama
30
 
31
  RUN git clone https://github.com/SEBSCHELLI/potato.git /app
32
+ RUN pip install --upgrade pip
33
+ RUN pip install . # Installs the potato repo as a Python package
34
+ #RUN pip install -r requirements.txt
35
 
36
  COPY --chown=user . /app
37