lucebert commited on
Commit
3d03c3d
·
1 Parent(s): 5fdd067

fix docker right

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -8,7 +8,9 @@ WORKDIR /app
8
  COPY . /app
9
 
10
  # Install Chainlit
11
- RUN pip install -e .
 
 
12
 
13
  # Make port 8000 available to the world outside this container
14
  EXPOSE 7860
 
8
  COPY . /app
9
 
10
  # Install Chainlit
11
+ RUN pip install -e . && \
12
+ mkdir -p /app/.files && \
13
+ chmod 777 /app/.files
14
 
15
  # Make port 8000 available to the world outside this container
16
  EXPOSE 7860