shenchucheng commited on
Commit
63b51a0
1 Parent(s): 16adaf8

mkdir storage/workspace in Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -23,7 +23,9 @@ RUN pip install --no-cache-dir -r requirements.txt
23
 
24
  WORKDIR /app
25
 
26
- RUN mkdir -p /app/logs && chmod 777 /app/logs
 
 
27
 
28
  COPY . .
29
 
 
23
 
24
  WORKDIR /app
25
 
26
+ RUN mkdir -p /app/logs && chmod 777 /app/logs && \
27
+ mkdir -p /app/workspace && chmod 777 /app/workspace && \
28
+ mkdir -p /app/storage && chmod 777 /app/storage
29
 
30
  COPY . .
31