Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
|
@@ -22,10 +22,10 @@ ENV PUPPETEER_SKIP_DOWNLOAD=true \
|
|
| 22 |
APIKEY_PATH=/data/.flowise
|
| 23 |
|
| 24 |
# ---------- Node & Python deps --------------------------------------------
|
| 25 |
-
RUN npm install -g flowise@3.0.
|
| 26 |
|
| 27 |
-
RUN pip3 install numpy
|
| 28 |
-
&& pip3 install chromadb
|
| 29 |
|
| 30 |
# ---------- Prevent Flowise early-log crash -------------------------------
|
| 31 |
RUN mkdir -p /usr/local/lib/node_modules/flowise/logs \
|
|
|
|
| 22 |
APIKEY_PATH=/data/.flowise
|
| 23 |
|
| 24 |
# ---------- Node & Python deps --------------------------------------------
|
| 25 |
+
RUN npm install -g flowise@3.0.7
|
| 26 |
|
| 27 |
+
RUN pip3 install numpy --break-system-packages \
|
| 28 |
+
&& pip3 install chromadb --break-system-packages # provides `chroma` CLI v2
|
| 29 |
|
| 30 |
# ---------- Prevent Flowise early-log crash -------------------------------
|
| 31 |
RUN mkdir -p /usr/local/lib/node_modules/flowise/logs \
|