Update Dockerfile
Browse files- 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 -
|
|
|
|
|
|
|
| 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 |
|