adistwn commited on
Commit
1cd8b27
1 Parent(s): 5a24155

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -7
Dockerfile CHANGED
@@ -21,15 +21,13 @@ RUN npm install -g flowise
21
 
22
 
23
  # Configure Flowise directories using the ARG
24
- #RUN mkdir -p $LOG_PATH $FLOWISE_PATH/uploads
25
- #RUN touch $BASE_PATH/encryption.key
26
- #RUN chmod -R 777 $LOG_PATH $FLOWISE_PATH
27
 
28
  # Configure Flowise directories using the ARG
29
- RUN mkdir -p $LOG_PATH $FLOWISE_PATH/uploads && \
30
- mkdir -p $BASE_PATH && \
31
- touch $BASE_PATH/encryption.key && \
32
- chmod -R 777 $LOG_PATH $FLOWISE_PATH $BASE_PATH $BASE_PATH/encryption.key
33
 
34
  WORKDIR /data
35
 
 
21
 
22
 
23
  # Configure Flowise directories using the ARG
24
+ RUN mkdir -p $LOG_PATH $FLOWISE_PATH/uploads && chmod -R 777 $LOG_PATH $FLOWISE_PATH
 
 
25
 
26
  # Configure Flowise directories using the ARG
27
+ #RUN mkdir -p $LOG_PATH $FLOWISE_PATH/uploads && \
28
+ # mkdir -p $BASE_PATH && \
29
+ # touch $BASE_PATH/encryption.key && \
30
+ # chmod -R 777 $LOG_PATH $FLOWISE_PATH $BASE_PATH $BASE_PATH/encryption.key
31
 
32
  WORKDIR /data
33