Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +6 -4
Dockerfile
CHANGED
|
@@ -28,7 +28,6 @@ RUN mkdir -p $LOG_PATH $FLOWISE_PATH/uploads && chmod -R 777 $LOG_PATH $FLOWISE_
|
|
| 28 |
|
| 29 |
WORKDIR /data
|
| 30 |
|
| 31 |
-
RUN ls -la && pwd
|
| 32 |
|
| 33 |
RUN mkdir $FLOWISE_PATH/erbot_doc && chmod -R 777 $FLOWISE_PATH/erbot_doc
|
| 34 |
COPY erbot_doc $FLOWISE_PATH/erbot_doc
|
|
@@ -36,18 +35,21 @@ COPY erbot_doc $FLOWISE_PATH/erbot_doc
|
|
| 36 |
RUN mkdir $FLOWISE_PATH/Devinette && chmod -R 777 $FLOWISE_PATH/Devinette
|
| 37 |
COPY Devinette $FLOWISE_PATH/Devinette
|
| 38 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39 |
RUN ls $FLOWISE_PATH/erbot_doc
|
| 40 |
RUN cd $FLOWISE_PATH/erbot_doc && pwd
|
| 41 |
|
| 42 |
RUN ls $FLOWISE_PATH/Devinette
|
|
|
|
| 43 |
|
| 44 |
RUN mkdir $FLOWISE_PATH/vectorstore1 && chmod -R 777 $FLOWISE_PATH/vectorstore1
|
| 45 |
RUN mkdir $FLOWISE_PATH/vectorstore2 && chmod -R 777 $FLOWISE_PATH/vectorstore2
|
| 46 |
RUN mkdir $FLOWISE_PATH/vectorstore3 && chmod -R 777 $FLOWISE_PATH/vectorstore3
|
| 47 |
RUN mkdir $FLOWISE_PATH/vectorstore4 && chmod -R 777 $FLOWISE_PATH/vectorstore4
|
| 48 |
-
# Afficher le contenu du dossier et le chemin complet
|
| 49 |
-
#RUN ls /data/erbot_doc && cd /data/erbot_doc && pwd
|
| 50 |
|
| 51 |
-
#RUN cd ..
|
| 52 |
|
| 53 |
CMD ["npx", "flowise", "start"]
|
|
|
|
| 28 |
|
| 29 |
WORKDIR /data
|
| 30 |
|
|
|
|
| 31 |
|
| 32 |
RUN mkdir $FLOWISE_PATH/erbot_doc && chmod -R 777 $FLOWISE_PATH/erbot_doc
|
| 33 |
COPY erbot_doc $FLOWISE_PATH/erbot_doc
|
|
|
|
| 35 |
RUN mkdir $FLOWISE_PATH/Devinette && chmod -R 777 $FLOWISE_PATH/Devinette
|
| 36 |
COPY Devinette $FLOWISE_PATH/Devinette
|
| 37 |
|
| 38 |
+
RUN mkdir $FLOWISE_PATH/Protocole && chmod -R 777 $FLOWISE_PATH/Protocole
|
| 39 |
+
COPY Protocole $FLOWISE_PATH/Protocole
|
| 40 |
+
|
| 41 |
+
|
| 42 |
+
|
| 43 |
RUN ls $FLOWISE_PATH/erbot_doc
|
| 44 |
RUN cd $FLOWISE_PATH/erbot_doc && pwd
|
| 45 |
|
| 46 |
RUN ls $FLOWISE_PATH/Devinette
|
| 47 |
+
RUN ls $FLOWISE_PATH/Protocole
|
| 48 |
|
| 49 |
RUN mkdir $FLOWISE_PATH/vectorstore1 && chmod -R 777 $FLOWISE_PATH/vectorstore1
|
| 50 |
RUN mkdir $FLOWISE_PATH/vectorstore2 && chmod -R 777 $FLOWISE_PATH/vectorstore2
|
| 51 |
RUN mkdir $FLOWISE_PATH/vectorstore3 && chmod -R 777 $FLOWISE_PATH/vectorstore3
|
| 52 |
RUN mkdir $FLOWISE_PATH/vectorstore4 && chmod -R 777 $FLOWISE_PATH/vectorstore4
|
|
|
|
|
|
|
| 53 |
|
|
|
|
| 54 |
|
| 55 |
CMD ["npx", "flowise", "start"]
|